Hello,
The code in the relevant column works well:
${Q21} ='1'
${Q21} ='2'
${Q21} ='3'
This also works well:
(selected(${Q21},'1') and selected(${Q21},'2'))
(selected(${Q21},'1') and selected(${Q21},'3'))
(selected(${Q21},'2') and selected(${Q21},'3'))
When select '1' and '2' and '3' in Q21, I expect the row with this code to show up:
(selected(${Q21},'1') and selected(${Q21},'2') and selected(${Q21},'3'))
The problem is that the following rows with its perspective code up show up when I select '1' and '2' and '3' in Q21:
(selected(${Q21},'1') and selected(${Q21},'2'))
(selected(${Q21},'1') and selected(${Q21},'3'))
(selected(${Q21},'2') and selected(${Q21},'3'))
(selected(${Q21},'1') and selected(${Q21},'2') and selected(${Q21},'3'))
Insight on how to make sure only :(selected(${Q21},'1') and selected(${Q21},'2') and selected(${Q21},'3'))
shows up when I select '1' and '2' and '3' will be appreciated.