anthonyexcel
Active Member
- Joined
- Jun 10, 2011
- Messages
- 258
- Office Version
- 365
- Platform
- Windows
Good afternoon,
Can someone please show me the fastest wat to clear all cells except for the value EXT. I have been using the code below but it is taking forever!
Can someone please show me the fastest wat to clear all cells except for the value EXT. I have been using the code below but it is taking forever!
Code:
Sub moveit()
For Each cell In Selection
If cell.Value <> "EXT" Then cell.Clear
Next
End Sub