Skip to main content
Matt Shonkwiler (Updox) 님이 #Sales And Marketing에 질문했습니다
Is it possible to use a calculated value as the search_text in the FIND() function?

 

In other words, is it possible to exclude the " around the search_text?

 

If not, is there a way to add the " without it preventing the calculation?

 

For example:

 

FIND(aTextField, anotherTextField)

 

Another example:

 

FIND( SUBSTITUTE(aTextField, "this", "that"), anotherTextField)
답변 6개
  1. 2018년 3월 27일 오후 5:41

    This may be a limitation on the process builder. I copied your formula into a formula field on the Task and it works as you expected. Note that I changed the reference to a custom text area field (text_area__c) because I am not allowed to use the standard Description field in the formula.

    MID(

    Text_Area__c,

    FIND("Text B: ", Text_Area__c) + 8,

    (

    FIND(

    SUBSTITUTE($Label.LineBreak, "-", ""),

    Text_Area__c,

    FIND("Text B: ", Text_Area__c) + 8

    )

    -

    (FIND("Text B: ", Text_Area__c) + 8)

    )

    )

     

    returns "This one is B"
0/9000