Solved

Show/Hide Logic Based on Property Number Value

  • 8 February 2024
  • 1 reply
  • 44 views

Badge

Looking to create Dynamic Block based on a contacts Property that has numbers. Example. Contact will see image 1 if their Property value for Current Sales is between .01 and 10000.00. Contact will see image 2 if their Property value for Current Sales is between 10000.01 and 20000.0.

I know i can use a flow and automate a new property based on the value but am looking for a solution where i can just use the Show/hide option based directly on this one Current Sales property rather than having to create another one based on that value.

icon

Best answer by JessFosnough 9 February 2024, 22:17

View original

1 reply

Userlevel 5
Badge +17

Hi @Orly KK

If you don’t mind having 2 (or more) different blocks/sections in your email, you could try using the show/hide logic in the display options.

For the first group, use this logic to show the correct image:

person|lookup:'Current Sales' <= 10000.00

For the second group:

person|lookup:'Current Sales' => 10000.01

You might be able to add AND to select properties that are between 2 values, but I’m not sure, try this logic:

person|lookup:'Current Sales' > 10000.00 and < 20000.00

Hope this helps!

Reply