This code converts the selected range from number format to text format.
VBA Code:
Sub ConvertToTextFormat()
Selection.NumberFormat = "@"
End Sub
This code converts the selected range from number format to text format.
VBA Code:
Sub ConvertToTextFormat()
Selection.NumberFormat = "@"
End Sub