Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a container with multiple charts. A chart is displayed to the user if a certain value is selected in the Type field (if value 'A' selected so chart 'A' is displayed, same to 'B' and 'C') - Done with SubStringCount().
In this Type field there are values without relevant chart. So I added a text object with message to select a type, but I have a problem with the condition.
This text should be displayed if no Type selected (done with: getcountselected(Type)=0), or if the selected Type is not 'A', 'B' or 'C'.
Examples: text displayed if 'D' selected, and not displayed if 'B' and 'D' are selected (displayed only chart 'B').
Thanks.
Hi, I'm not sure of the conditions you need but you can try removing ABC from the selected values and check if there is anything else: Len(PurgeChar(Concat(Type),'ABC'))>0,