How do you modify the sample code to perform the text case on: A user-selected cell? A user-selected range? The entire worksheet? 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...
How do you modify the sample code to perform the text case on: A user-selected cell? A user-selected range? The entire worksheet? Sub Uppercase() ' Loop to cycle through each cell in... Clint_E_Hill Sub Uppercase_selection() Dim rng, x As Range Set rng = Selection '...