Jun 16, 2019 03:56 PM
I am trying to make a simple formula that would show a total amount available between two fields if a third field had a particular category in it.
IF {Type of Credit}=“Credit Card” then({Total Credit}-{Total Amount Due:})
I have not been successful getting the syntax right, but I am a new user to airtable and am probably still thinking like a spreadsheet…
Thank you for your help! Colleen
Jun 16, 2019 08:20 PM
You’re very close:
IF(
{Type of Credit}='Credit Card',
{Total Credit}-{Total Amount Due:}
)
That will leave the field blank if {Type of Credit}
is anything other than 'Credit Card'
.
Jun 16, 2019 08:42 PM
Thank you W_Vann_Hall, I appreciate the quick response. I was close, but not correct!