Laurence D
New Member
- Joined
- Sep 14, 2016
- Messages
- 31
Hi there,
Can somebody please help amend my macro so that it ignores hidden rows? I have been playing around with some code but have not got it quite right. I know it is an easy fix I am just a noob.
Here is what I have so far:
Thanks,
Laurence
Can somebody please help amend my macro so that it ignores hidden rows? I have been playing around with some code but have not got it quite right. I know it is an easy fix I am just a noob.
Here is what I have so far:
Code:
Sub Selection_Uppercase()
For Each x In Selection
x.Value = UCase(x.Value)
If IsEmpty(x.Value) = True Then
Exit Sub
End If
Next
End Sub
Thanks,
Laurence