Hi,
There are two ways (and a few others that some have mentioned about a month back).
One way is via a formula...
In the same row that the data is in type into an EMPTY COLUMN this...
=Value(A1)
I'm assuming that A1 is the first row of your data with the tick marks.
Copy this formula down to the last row of your data. After everything calculates (if it takes long at all). Copy and paste special values back into your original column.
The other way I know is via VBA...
Insert a new module in the
VB editor and type in the following code...
(this code assumes that the tick marked data is in column A and starts in row 1)
(this code also assumes that the column with the tick marks does not have any blank fields. Meaning, that every row has data in it, if it hits a blank cell, it will stop, so you might have to nest change the last line to (Loop until activecell.offset(0,1) = ""), change the offset to however many columns to the right of the activecell that there is a column that always has data (or negative to the left))
Sub TickRemover()
Range("A1").Select
Do
Activecell = Activecell.Value
Activecell.Offset(1,0).select
Loop until activecell = ""
End Sub
Have Fun!
-Mike