Hey All, I need help. I have a contact saved searc...
# suiteanalytics
v
Hey All, I need help. I have a contact saved search where if I add a column “Billing Address : Internal ID”, it hides all the contacts from results which has no billing address saved. My requirement is to show all contacts in result and if the value is blank in “Billing Address : Internal ID” field, it should show empty. I tried formula text, but no luck.
a
I had to solve this recently, one sec
CASE WHEN {address.isdefaultbilling} = 'T' THEN TO_CHAR({address.addressinternalid}) ELSE ' ' END
that should give you the billing address Id whether there is one or not for the customer
v
Thanks for your response @al3xicon but it did not work. I tried on contact and customer searches both. Is this working for you? Am I doing anything wrong or missing any configuration settings?
a
i'm not sure, it worked for me