×
יריב החביב
Hello,
We have this code to transform data from num to text
I want to exit this code (loop) when there are no more value's in the column
(empty)
what do i have to edit to that code ?
Range("H1:H5200").Select
Selection.NumberFormat = "@"
Dim cell As Object
For Each cell In Selection
cell.Value = " " & cell.Value
cell.Value = Right(cell.Value, Len(cell.Value) - 1)
Next
We have this code to transform data from num to text
I want to exit this code (loop) when there are no more value's in the column
(empty)
what do i have to edit to that code ?
Range("H1:H5200").Select
Selection.NumberFormat = "@"
Dim cell As Object
For Each cell In Selection
cell.Value = " " & cell.Value
cell.Value = Right(cell.Value, Len(cell.Value) - 1)
Next