cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

select multiple checkbox

Former Member
0 Likes
2,047

hi all

i want to add many checkbox in the "input form" using my query values and when i check some of the checkox , i want to filter my "output table" with my selections. how can i do this??

View Entire Topic
Former Member
0 Likes

hi bart

i have a problem with adding my query values to checkboxs values.

for example;

my guery has a characteristic name "Gender". This characteristic has two value "male" and "female." If gender_key = 1 value "male" and gender_key= 2 value ''female". On the input form i have two checkbox "male" and "female".i want if i have check the male checkbox and press submit in the output table i want to see only "male".

how can i link my checkbox value to my query value?( e.g. gender)

thank you for help!!!

Former Member
0 Likes

How does your query look like?

Whats in the row and whats in the column?

Former Member
0 Likes

Please Note: the thing i explain only works for charts not for tables.

So you need a input form

Some checkboxes

A datastore

A query

And a chart.

I presume you succeeded with the data store and creating some boolean variable? (e.g. check_male / check_female)

In the dataseries enter a formula like:

STORE@Check_male * @Gender__key_value,

You have to play a bit if you need an IF statement.