Hi,
I have a formula for phone numbers and it is displaying not in order on the page. Needs to be Office 1st;Home 2nd; Cell 3rd.
It is displaying in different order when run crystal report. Any suggestions? Thank you.
if
{EP_PHONE.EP_PH_TYPE}='Office'
then "Office" + ":" + " " + {EP_PHONE.EP_PH_NBR}
else
if {EP_PHONE.EP_PH_TYPE}='Home'
then "Home" + ":" + " " + {EP_PHONE.EP_PH_NBR}
else
if {EP_PHONE.EP_PH_TYPE}='Cell'
then "Cell" + ":" + " " + {EP_PHONE.EP_PH_NBR}
else
"Other" + ":" + " " + {EP_PHONE.EP_PH_NBR}
I have a formula for phone numbers and it is displaying not in order on the page. Needs to be Office 1st;Home 2nd; Cell 3rd.
It is displaying in different order when run crystal report. Any suggestions? Thank you.
if
{EP_PHONE.EP_PH_TYPE}='Office'
then "Office" + ":" + " " + {EP_PHONE.EP_PH_NBR}
else
if {EP_PHONE.EP_PH_TYPE}='Home'
then "Home" + ":" + " " + {EP_PHONE.EP_PH_NBR}
else
if {EP_PHONE.EP_PH_TYPE}='Cell'
then "Cell" + ":" + " " + {EP_PHONE.EP_PH_NBR}
else
"Other" + ":" + " " + {EP_PHONE.EP_PH_NBR}