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
Hi Mary!
Try:
IF(
FIND(
"Com CB",
{Long text field}
),
"Com CB"
) &
IF(
FIND(
"Remise CB",
{Long text field}
),
"Remise CB"
) &
IF(
OR(
FIND(
"PAYMENT",
{Long text field}
),
FIND(
"PRLV SEPA",
{Long text field}
)
),
"VER"
)
Hi Mary
try this formula
IF(
FIND("PAYMENT", Label), "VER", ""
&
IF(FIND("PRLV SEPA", Label), "VER", ""
)
)
MERCI 😍
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.