Help

Help with IF Formula/Is Blank, Is Not Blank

Topic Labels: Formulas
2427 2
cancel
Showing results for 
Search instead for 
Did you mean: 
John_Dlouhy
7 - App Architect
7 - App Architect

As a relative novice with IF Formulas, I am hoping for help with the following.

My table has columns for First Name, Last Name and With First, With Last. I am using Airtable to track RSVPs and would like a Formula field that provides the following result.

When Last Name is not blank and With Last is not blank, enter 2. (John Smith is bringing Sally Smith, so 2 people are attending).

When Last Name is not blank and With Last is blank, enter 1. (John Smith is coming by himself, so 1 person is attending).

I appreciate any guidance on how to achieve this result.

Thank you!

2 Replies 2
Claudio
6 - Interface Innovator
6 - Interface Innovator

Hi John,

Try this:
IF({Last Name},IF({With Last},2,1),0)

Thanks so much, Claudio! This worked like a charm. Cheers!

John