Hi, umpscott!
Tried with something like this?
Code:With ActiveCell If Right(.Value, 1) = "~" Then .Value = Right(.Value, Len(.Value) - 1) End With
Regards!
Range("DataTable[Pred_Description]").Select
With Selection
If Right(.Value, 1) = "~" Then .Value = Right(.Value, Len(.Value) - 1)
End With
Dim c As Range
For Each c In Range("DataTable[Pred_Description]")
With c
If Right(.Value, 1) = "~" Then .Value = Left(.Value, Len(.Value) - 1)
End With
Next c