Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have an object that I'd to like to be visibleonly on the condition that there is at least one current selection. Is there a function for this? GetCurrentSelections requires a field. Basically I just need to know whether there is currently a selection or not so that I can put it on the Conditional Show/Hide.
I use this:
=If(Count(GetCurrentSelections()) = 0, 'No Selections Made',
IF(vCurSelect = 1, 'Hide Current Selections', 'Show Current Selections'))
to change text on a button to show the current selections box. I would imagine Count(GetCurrentSelections()) = 0 as your show/hide condition should work.
mike
You can use something like from Layout condition
If(GetFieldSelections(FieldName)>0, 1, 0)
I use this:
=If(Count(GetCurrentSelections()) = 0, 'No Selections Made',
IF(vCurSelect = 1, 'Hide Current Selections', 'Show Current Selections'))
to change text on a button to show the current selections box. I would imagine Count(GetCurrentSelections()) = 0 as your show/hide condition should work.
mike
Try this:
ISNULL(GetcurrentSelections())
Returns 0 if there is selection, or -1 if anything selected.