Jul 26, 2024 11:44 AM
Hi! I created an Airtable to help plan my wedding. I have a table that's for Guests and in this table I have fields for their first and last name and their title (Mr., Mrs., etc.). I created a field that adds all of these fields to create their formal name on the invitation envelope. Right now the formula reads:
Any help would be so great!
Jul 26, 2024 05:08 PM
Hi @alato014 ,
To solve your problem, try using a conditional 'IF()' statement. This will follow the same format you have currently but will first check if there is a guest name. If there is a guest name, the formula will concatenate the invitee's first name, last name, and guest name. If there is no guest name, it will only concatenate the invitee's first and last name. Here is a breakdown:
Formula:
IF(
{Guest Name (from Relationship)},
Title & " " & {First Name} & " " & {Last Name} & " & " & {Guest Name (from Relationship)},
Title & " " & {First Name} & " " & {Last Name}
)
Explanation: The formula format is: IF({Field Name}, value_if_true, value_if_false).
The way this works for your example is:
Hope that helps. Goodluck with the wedding planning, and congrats!