I'm currently trying to get a string to be manipulated into this format
Phone: (123) 456-7890
Cell: (930) 345-4566
Fax: (234) 454-4321
From something a string that would say this
1234567890
2343454566
2344544321
This is my current code
Its Currently returningCode:Return "Phone: " & landLine & ControlChars.CrLf & "Cell: " & cell & ControlChars.CrLf & "Fax: " & fax
Phone: 1234567890
Cell: 2343454566
Fax: 2344544321
Thanks for any help




Reply With Quote