Velocity script issue: if - else | Community
Skip to main content
Christin_Scholz
New Participant
January 15, 2020
Solved

Velocity script issue: if - else

  • January 15, 2020
  • 2 replies
  • 2978 views

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

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Jay_Jiang

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

2 replies

Christin_Scholz
New Participant
January 15, 2020

Awesome, that works! Thank you very much!

Jay_Jiang
Jay_JiangAccepted solution
New Participant
January 15, 2020

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