Does anyone have a Report Designer formula that would remove the parenthesis from phone numbers when imported from payroll?

SOLVED

Does anyone have a Report Designer formula that would remove the parenthesis from employee phone numbers when imported from payroll?

Parents
  • +1
    verified answer

    I found a way with 3 formulas:

    For the Area Code:  Part (Phone Number, 2, 3)

    For the Rest of Phone Number:  Part (Phone Number, 6, 8)

    To Join Them:  Join (Area Code, "-", Rest of Phone Number)

    You can change the joining formula to format it the way you want it.

    You could probably nest this as Join(Part(Phone Number, 2, 3), "-", Part(Phone Number, 6, 8))

Reply
  • +1
    verified answer

    I found a way with 3 formulas:

    For the Area Code:  Part (Phone Number, 2, 3)

    For the Rest of Phone Number:  Part (Phone Number, 6, 8)

    To Join Them:  Join (Area Code, "-", Rest of Phone Number)

    You can change the joining formula to format it the way you want it.

    You could probably nest this as Join(Part(Phone Number, 2, 3), "-", Part(Phone Number, 6, 8))

Children