Email body

Hi!

I´m trying to show a value in the email body if some conditions for a single column are true, but it seems that my expression is not working.
Is this expression correct for an email body?
The expression has the “EndIf” but is not showing it in this text

<<IF:(AND([L2_L 3]<380,[L2_L 3]>420))>>  - L2_L 3 = <<CONCATENATE([L2_L 3],"")>><<EndIf>>
0 5 124
5 REPLIES 5

Unless you have a larger section of content in your template to conditionally show, you can just stick to basic IF or IFS expressions, instead of template IF.

I don’t see any glaringly wrong with your expression, but I’d do this instead:

<<IFS( AND( [L2_L 3] < 380 , [L2_L 3] > 420 ) , " - L2_L 3 = " & [L2_L 3] )>>


Use markdown:

Thanks @Marc_Dillon I will do it!

<<IF:(AND
    ^ /that may be making some problems/

Edit: Please ignore, I’ve made a mistake

@SkrOYC

I’m sorry. Thanks for letting me know my mistake.
Please repost your expression under a code block @Soporte_GestionApp

Top Labels in this Space