Skip to main content

Hello everyone, thanks in advance for any support. I would like to create a formula that pulls organization names and what state they are in and eliminate the space and have a dash between them. I.E. Akoutis CA would be Akoutis-CA. See attachment

{Organization Name} & “-” & {State}


It looks like you sometimes don’t have a state, in which case I assume that you also do not want to have the dash.


CONCATENATE(
{Organization Name},
IF({State}, "-" & {State})
)

It looks like you sometimes don’t have a state, in which case I assume that you also do not want to have the dash.


CONCATENATE(
{Organization Name},
IF({State}, "-" & {State})
)

Thank you. This solution worked great. I appreciate it.


Reply