If I have a large range of cells, and I want to delete all cells containing just a "," or similar, how can I express this in code? I was thinking something along the lines of
If Range("C1:C100").Value = "," Then
Active.Cell.Delete Shift:=xlRight
I know this is terrible, but hopefully it gets my point across.
Thanks!