Skip to main content
Solved

FORMULA FIND()

  • February 14, 2024
  • 3 replies
  • 26 views

Forum|alt.badge.img+4

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", "" ) )

 

This should be the output
 
Best

3 replies

TheTimeSavingCo
Forum|alt.badge.img+31

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" )

 


Link to base


Forum|alt.badge.img+10
  • Inspiring
  • Answer
  • February 14, 2024

Hi Mary 

try this formula 

 

 

IF( FIND("PAYMENT", Label), "VER", "" & IF(FIND("PRLV SEPA", Label), "VER", "" ) )

 

This should be the output
 
Best

Forum|alt.badge.img+4
  • Author
  • New Participant
  • February 15, 2024

MERCI 😍