I have problem with my project using VBA. I have this column that has thousands of rows.
And these columns have values like 0.05, 1.3 etc.. and it also has complicated values with greater than sign < like <0.05, <0.02 which is my real problem. I want to use If Else or Looping for this solution. But I don't know how. I'm a beginner in VBA macro excel.
What I want to happen from these rows is if Macro detect a value that has < it will automatically be divided by 2 so I won't have complicated values to get the maximum and minimum value for these rows.
Edit1: Uploaded Image

I hope you get my point about this matter. Sorry for my english. Thanks for your help.

If IsNumeric(Range) Thento trap cases with "<" in the cell value, thenRange.Value = CDbl(Replace(Range.Value,"<",""))/2, assuming overwriting the value.