I'm using the code below, but I want it to only amend if the cell is text, not a number - is this possible?
TIA
Code:
For Each cell In Range("B5:D" & Cells(Rows.Count, "A").End(xlUp).Row)
If Len(cell.Value) > 1 Then cell.Value = Left(cell.Value, 1)
Next cell
TIA
Last edited: