Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I'll try to replace a chart with another one. So I'm using a field event trigger, as the first diagram shall only show if there is nothing selected in my field 'A'. With a selection, diagram 1 get hidden and 2 appears. That's fine. Problem is, that I want to come back to diagram 1 as soon as the user deselects the value from field 'A'.
Is that possible?
Thanks, Regards,
Jens
Hi instead of trigger, use getselectedcount() function.
getselectedcount(fieldname)=0 for diagram 1
getselectedcount(fieldname)>0 for diagram 2
Hi instead of trigger, use getselectedcount() function.
getselectedcount(fieldname)=0 for diagram 1
getselectedcount(fieldname)>0 for diagram 2
Working, thanks a lot.