Custom Cell Format problem
Target.Value = "Map " & UCase(Left(Target.Value, 4)) & " <" &
UCase(Mid(Target.Value, 5, 2)) & "-" & Right(Target.Value, 2) & ""
This is going to seem like magic<g...
Your above line of code can be replaced with this...
Target.Value = Format(Target.Value, "!Map @@@@ \<@@-@@\")
Rick
|