I have a Phone formula where I format the phone and put dashes in.
Left ({people.tel1}, 3) + "-" + Mid ({people.tel1}, 4,3) + "-" + Mid ({people.tel1}, 7,4)
Now lets say the phone is empty, then it shows 2 dashes.
I dont want it to show anything at all. What can I do?
I tried doing
If not isnull({people.tel1}) then
Left ({people.tel1}, 3) + "-" + Mid ({people.tel1},
4,3) + "-" + Mid ({people.tel1}, 7,4)
but it didnt work
any suggestions?
Left ({people.tel1}, 3) + "-" + Mid ({people.tel1}, 4,3) + "-" + Mid ({people.tel1}, 7,4)
Now lets say the phone is empty, then it shows 2 dashes.
I dont want it to show anything at all. What can I do?
I tried doing
If not isnull({people.tel1}) then
Left ({people.tel1}, 3) + "-" + Mid ({people.tel1},
4,3) + "-" + Mid ({people.tel1}, 7,4)
but it didnt work
any suggestions?