cancel
Showing results for 
Search instead for 
Did you mean: 

Dynamic Visibility based on value change

Former Member
0 Kudos

Hello all, in short I'm trying to make a URL button appear and disappear based on a value change in a Single Value component. If the value is less than zero I want the button not to show. If the value is 1 or more, the, I want the button to appear. Is this possible?
Any help is appreciated thanks...

Accepted Solutions (1)

Accepted Solutions (1)

amit_mathur
Active Contributor
0 Kudos

Hi John,

You should be able to do this. Simply put up a condition in cell to compare the cell value(where Single value component is bonded to) greater than 0 and set to True/False. Use this for dynamic visibility for URL component.

Hope this help.

Regards,

Amit

former_member182541
Active Contributor
0 Kudos

As amit explained its possible. write a formula =if(a1<0,1,0) and assign this cell to the dynamic visibility of that component.

Dynamic visibility:

Answers (1)

Answers (1)

Former Member
0 Kudos

Thank you both. I have it working now. I had to write the true/false statement this way
=IF(F5 > 1,0,1) to get it functioning properly. Thanks again...