Contact__r.Account.BillingStreet + BR() +
Contact__r.Account.BillingCity + "," + Contact__r.Account.BillingState + " " + Contact__r.Account.BillingPostalCode + BR() + Contact__r.Account.BillingCountry
Thank you.
Jo Anne
2 Antworten
See if this works -
IF(
NOT(ISBLANK(Contact__r.Account.BillingStreet)),
Contact__r.Account.BillingStreet + BR(),
NULL
) +
IF(
NOT(ISBLANK(Contact__r.Account.BillingCity)),
Contact__r.Account.BillingCity + ", ",
NULL
) +
IF(
NOT(ISBLANK(Contact__r.Account.BillingState)),
Contact__r.Account.BillingState + " ",
NULL
) +
IF(
NOT(ISBLANK(Contact__r.Account.BillingPostalCode)),
Contact__r.Account.BillingPostalCode + BR(),
NULL
) +
IF(
NOT(ISBLANK(Contact__r.Account.BillingCountry)),
Contact__r.Account.BillingCountry + BR(),
NULL
)