billandrew
Well-known Member
- Joined
- Mar 9, 2014
- Messages
- 743
Looking to Replace a dash with a Blank in Column D
Below is what I have.
Thank You for any assist.
Below is what I have.
Thank You for any assist.
Code:
Sub ReplaceD() Dim lastRow As Long
lastRow = Range("D" & Rows.Count).End(xlUp).Row
Range("D2:D" & lastRow).Replace what:="-", replacement:="", lookat:=xlWhole
End Sub