Excel macro or script that can make all data into caps in a excel sheet Some easy way which I can use to make all words CAPS.
Thanks.
Mahesh
- Login or Signup Now to post comments
Excel macro or script that can make all data into caps in a excel sheet Some easy way which I can use to make all words CAPS.
Regards
Sharath Reddy
Here's my solution: Sub Uppercase() ' Loop to cycle through each cell in the specified range. For Each x In Range("A1:A5") ' Change the text in the range to uppercase letters. x.Value = UCase(x.value) Next End Sub Correct me if I'm wrong.
Regards,
Fraklin