Hi all,
I have this code here that simply turns the cells to uppercase.
I have this code here that simply turns the cells to uppercase.
Code:
[
Sub Turn_Uppercase()
For Each x In Range("C3:H200")
x.Value = UCase(x.value)
Next
End Sub
/CODE]
Does anyone know how would I adapt this code so that I can run in a sheet tab (Private sub worksheet_change)? rather than a module as others maybe using this sheet and have no knowledge of macros.
Thanks in advance guys!