The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Feb 14, 2024 06:41 AM
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
Solved! Go to Solution.
Feb 14, 2024 07:54 AM
Hi Mary
try this formula
IF(
FIND("PAYMENT", Label), "VER", ""
&
IF(FIND("PRLV SEPA", Label), "VER", ""
)
)
Feb 14, 2024 07:43 AM - edited Feb 14, 2024 08:00 AM
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"
)
Feb 14, 2024 07:54 AM
Hi Mary
try this formula
IF(
FIND("PAYMENT", Label), "VER", ""
&
IF(FIND("PRLV SEPA", Label), "VER", ""
)
)
Feb 14, 2024 11:26 PM
MERCI 😍