I want to append "0" along with cell value if there is no "0" in beaning of cell value.
Range of cells are S3:S100
I tried the following logic but it does not work.
Can anyone please help me
Thanks
Range of cells are S3:S100
I tried the following logic but it does not work.
Code:
For Each cell In [S3:S100] If cell.value is not null then if left((cell.Value), 1) <> 0 Then cell.Value = "0" & cell.value End If Next cell
Thanks
Comment