Hello everyone,
I can't create a formula to find pieces of text in the "Libellé" (Text) field and transform them into a word.
Example :
IF “PAYMENT” or “PRLV SEPA” in the "Libellé" field
THEN “VER” in the formula field
Hello everyone,
I can't create a formula to find pieces of text in the "Libellé" (Text) field and transform them into a word.
Example :
IF “PAYMENT” or “PRLV SEPA” in the "Libellé" field
THEN “VER” in the formula field
Best answer by RdMedia_srl
Hi Mary
try this formula
IF(
FIND("PAYMENT", Label), "VER", ""
&
IF(FIND("PRLV SEPA", Label), "VER", ""
)
)

Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.