Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Does anyone know how I can set a text box to only display when field [Project Name] only has one value selected?
On the layout tab of the text box properties is a show/conditional checkbox.
Check that.
Then enter a condition like: getselectedcount( [Project Name]) = 1
you could also do getpossiblecount( [Project Name]) = 1
this would handle the situation where a user may not have selected a project name, but through other selections, there is only one (white) project name possible anyways.
On the layout tab of the text box properties is a show/conditional checkbox.
Check that.
Then enter a condition like: getselectedcount( [Project Name]) = 1
you could also do getpossiblecount( [Project Name]) = 1
this would handle the situation where a user may not have selected a project name, but through other selections, there is only one (white) project name possible anyways.
Jon saves my day again!
hurray !
Yes use GetSelectedcount() function for this in the layout properties of the text object in Conditional write expression
=Getselectedcount( [Project Name]) = 1
See snap for that
Regards
Anand