Quote:
Originally Posted by Moideen
Thanks a lot...
|
Dear Auric,
I Tried with the below mentioned VBA code "0" not showing.
Eg : 1.550 , Shown only : A.FF, To be Shown : A.FFS
Private Sub Worksheet_Change(ByVal Target As Range)
For Each cell In Target
If cell.Column = 1 Then cell.Offset(0, 1).Value = Replace(Replace( _
Replace(Replace(Replace(cell.Value, 1, "A"), 2, "B"), 3, "C"), _
4, "D"), 5, "F"), 0, "S")
Next
End Sub