Hi all folks,
this time I've a problem related to the research of a some kind of string in a range, here it is:
in column A I've got 10.000 cells with this kind of values (the format of the cell is Text):
A1 = 10.1
A2 = 10.11
A3 = 10.12.0
A4 = 10.12.00
I want to fill all the cells that have the type of value of A3, so a string with 7 charaters at all!
Sub ColoraCelle()
For Each c In Sheet(1).Column(A)
if ...then...c.interior.clorindex=3
next
End Sub
thank you in advance!
bye bye