How can I capitalise abbreviations if equal or less than 4 letters in column A?
I couldn't find on web anything treating abbreviations specifically.
UCASE("string") will work.
Sub stringtest()
If Len(Range("A1")) < 5 Then
Range("A1") = UCase(Range("A1"))
End If
End Sub
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With