Help

Re: How not to concatenate a particular product from a list

730 1
cancel
Showing results for 
Search instead for 
Did you mean: 
leandro_medeiro
6 - Interface Innovator
6 - Interface Innovator

hello guys!.

I have an apparently simple situation to solve, but I’m still not used to the airtable formulas. basically I have a list of products and a product with the name “continue” which is an option that follows the flow of the system I am integrating with airtable.

All products contact the Values ​​column. however I wanted the product “continue” not to concatenate. is it possible to insert this condition in the formula?

The formula I’m using is: CONCATENATE(Products," ", “R$”, Value)

concatenar

5 Replies 5
IF(
   {Produtos} != "Continuar",
   CONCATENATE(Products," ", "R$", Value)
)
leandro_medeiro
6 - Interface Innovator
6 - Interface Innovator

It’s giving an error :thinking:

image

Re-type the quotes around the R$. They’re “curly” quotes and formulas only accept straight quotes.

image
now it worked, but I would like the name to continue in the cell, but instead the cell is blank. what would I have to modify in the formula?

Not sure what you mean by name continuing, but if you want something else to show when Produtos isn’t continuarr, you’d just add a third argument to the IF statement

IF(
   {Produtos} != "Continuar",
   CONCATENATE(Products," ", "R$", Value),
   "something else"
)