Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Good to know! Thanks @Jo_Pitts1 the primary question rn maybe, why it didnt catch the conditional logic while both are Down ?should we normalize it to string first?
Hi Guys, it is as is from the list on the right.this when rendered emits "Down" but the problem it didnt catch on the conditional.but if you put it manually like so : #set($testA = "Down"}#if($testA.equals("Down")) OUTPUT A#else OUTPUT B #endIt renders OUTPU...
Thanks for responding and bare with me, im pretty new in Marketo 🙂this is whats available on the right of the template. this is what shows after i dragged it from the right{{$lead.Belonging Increase}}and renders as Downusing $lead.Belonging Increase returns nothing but again, what confuses me is we...
Hi @Darshil_Shah1 thanks a lot for the reminder and reference. tried this as per your direction :#set($testA = "{{lead.belonging_change}}") #if($testA.equals("Down")) OUTPUT A#else OUTPUT B $testA#endbut it still renders OUTPUT B Down
Guys, i need help#set($testA = "{{lead.change}}") **content is down#set($testB = "Down")#if( $testA == $testB )TRUE OUTPUT#elseFALSE OUTPUT $testA $testB#endwhen rendered output is FALSE OUTPUT Down DownQuestion : why it is not rendering "TRUE OUTPUT" ?? while $testA and $testB is the same "Down"