If you need to use those cells in calculations, you might find this handy. I had dashes in my cells which represented 0. When I needed to use those cells in calculations in other places in my procedure I needed to treat the value of the cell "-" as 0. So I wrote this bit of code. So the variable x2 represents the value of the selected cell. If the value is "-", then I tell it to make x2 = 0. If it's not "-" then x2 is equal the number in that cell.
Dim Catchdash As String
FormatRange.Cells(i, Col2Num).Select
Catchdash = Selection.Value
If Catchdash = "-" Then
x2 = 0
Else
x2 = Selection.Value
End If
Who knows, you might find it handy. If not, oh well.
So if you nee