Skip to main content
Christin_Scholz
Level 2
January 15, 2020
Risolto

Velocity script issue: if - else

  • January 15, 2020
  • 2 risposte
  • 3002 visualizzazioni

Hi all,

I have a question regarding velocity script.

We want to say the following:

If field "lead.bestOffer" contains "A" -> write "B" to the my.token "my.bank_name"

In all other cases, use the value that {lead.bestOffer} shows.

We tried the following way, but it didn't work:

#if(${lead.bestOffer} == "A")

#set($bank_name = "B")

#else

##otherwise, use the lead value

#set($bank_name = ${lead.bestOffer})

${bank_name}

Can anybody help?

Best

Christin

Questo argomento è stato chiuso alle risposte.
Migliore risposta di Jay_Jiang

don't forget #end to close out the #if

2 risposte

Jay_Jiang
Jay_JiangRisposta
Level 10
January 15, 2020

don't forget #end to close out the #if

Christin_Scholz
Level 2
January 15, 2020

Awesome, that works! Thank you very much!