Oct 20, 2023 01:07 PM
Hey there!
I am an Airtable novice looking for formula help. 🙃
I have a table with columns: Year, Candidate, Entity/Org, Side, Race Level, State, District
Right now, my formula is:
IF(Candidate !="", CONCATENATE({Candidate},", ",State," ",District),
CONCATENATE({Entity/Org}," - ", Side))
which will pull the Entity/Org & Side when the candidate field is empty. However, there are instances where
Any help is greatly appreciated!
Thanks!
Oct 22, 2023 07:46 PM
How does it work if Candidate is empty and there is a Distrcit? (FALSE() part)
IF(NOT({Candidate}),
IF(NOT({District}),
CONCATENATE({Entity/Org}," - ", {Side}),
FALSE()
),
IF(NOT({District}),
CONCATENATE({Candidate}, ", ", {State}, " ", {Race Level}),
CONCATENATE({Candidate},", ",{State}," ",{District})
)
)
Oct 22, 2023 11:38 PM
IF(Candidate,
CONCATENATE({Candidate}, ", ", State, " ", IF(District,
District,
{Race Level}
)
),
CONCATENATE({Entity/Org}, " - ", Side)
)