Hi Evan,
Welcome to the forum. You should be able to achieve this using Find() or Search():
IF(FIND("Bid",{Line Item}),"value if true","value if false")
Keep in mind that the function is case sensitive. If you need to find upper and lower-case versions of “Bid”, use this
IF(FIND("bid",LOWER({Line Item})),"value if true","value if false")
Hi Evan,
Welcome to the forum. You should be able to achieve this using Find() or Search():
IF(FIND("Bid",{Line Item}),"value if true","value if false")
Keep in mind that the function is case sensitive. If you need to find upper and lower-case versions of “Bid”, use this
IF(FIND("bid",LOWER({Line Item})),"value if true","value if false")
This is great. The only issue I am running into is that the solution isn’t popping up with a dollar amount, just a numeric value. Anyway to fix that?
This is great. The only issue I am running into is that the solution isn’t popping up with a dollar amount, just a numeric value. Anyway to fix that?
Right click on the field and choose “Customize field type”, then choose the formatting tab. It should give you the option to display as currency
Right click on the field and choose “Customize field type”, then choose the formatting tab. It should give you the option to display as currency
Thanks Julian,
Unfortunately Formatting isn’t an option for some reason.
“Your result type is not a number or a date. Formatting options are currently only available if your result type is a number or a date.”
This is the formula I am using:
IF(FIND(“Bid”,{Line Item}),“0”, Unit*Rate)
Thanks Julian,
Unfortunately Formatting isn’t an option for some reason.
“Your result type is not a number or a date. Formatting options are currently only available if your result type is a number or a date.”
This is the formula I am using:
IF(FIND(“Bid”,{Line Item}),“0”, Unit*Rate)
Remove the quotation marks from the “0”. Since one result (the “0”) is a string, Airtable treats the whole field that way. Try this:
IF(FIND(“Bid”,{Line Item}),0, Unit*Rate)
Remove the quotation marks from the “0”. Since one result (the “0”) is a string, Airtable treats the whole field that way. Try this:
IF(FIND(“Bid”,{Line Item}),0, Unit*Rate)
This worked beautifully! You’re a life saver!!
This worked beautifully! You’re a life saver!!
Glad to hear! If you don’t mind, mark the correct answer as “Solution”