Hi everyone,
There are two great formulas I have found that work on a contact column if it is converted to text. But it only works on the first contact in a contact list with multiple contacts. Are there any suggestions to have the formulas look through and modify multiple contacts?
(PS: The column "CL-TST refers to the Contacts column that has been set as a Test/Number column Type
The first is:
=SUBSTITUTE(MID([CL_Tst]@row, FIND("<", [CL_Tst]@row) + 1, LEN([CL_Tst]@row) - (FIND("<", [CL_Tst]@row) + 1)), ">", "")
and the second is:
=MID([CL_Tst]@row, FIND("<", [CL_Tst]@row) + 1, FIND(">", [CL_Tst]@row) - FIND("<", [CL_Tst]@row) - 1)