Twollaston
Board Regular
- Joined
- May 24, 2019
- Messages
- 241
Hello there,
I have a worksheet with about 120,000 lines with probably 50 columns and I run the following code to change all the #'s to blank cells. I was wondering if there is a faster way to do this, because this takes a long time to complete.
I have a worksheet with about 120,000 lines with probably 50 columns and I run the following code to change all the #'s to blank cells. I was wondering if there is a faster way to do this, because this takes a long time to complete.
Code:
Sub NtoBlank()
Cells.Replace What:="#", Replacement:=""
End Sub