Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I need to show/hide a digramm object depending on the selection status of a multibo ... in fact depending of anything beeing selected or not.
If there is no selection filter active -> don't show.
If there is any selection criteria used -> show diagram
Sounds simple but I cannot see what function I should use in the show condition in the object's layout tab.
Best Regards,
Georg
Hi,
You could use something like:
if(GetSelectedCount(FIELDNAME)>0,1,0)
If there are no selections in the field, the object will be hidden, and once something is selected, the count will be larger than 0 and hence the object will show.
Hi,
You could use something like:
if(GetSelectedCount(FIELDNAME)>0,1,0)
If there are no selections in the field, the object will be hidden, and once something is selected, the count will be larger than 0 and hence the object will show.