Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Everyone,
I have a requirement where in i have two combo charts....but i want to display only one combo chart based on selection in list box.......if selection is A in list box then only one combo chart should only be visible...
Thanks and Regards,
Rohit
Hi Rohit,
Open chart property
Goto Layout tab> show conditional>
if(getfieldselections(listbox)='A',1,0)
here change the listbox with your field name .. when ever you make selection in that listbox with A.. it will show the chart other wise not.
HTH
Sushil
Hi Rohit,
Open chart property
Goto Layout tab> show conditional>
if(getfieldselections(listbox)='A',1,0)
here change the listbox with your field name .. when ever you make selection in that listbox with A.. it will show the chart other wise not.
HTH
Sushil
Thank you, Sushil