Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
satishkurra
Specialist II
Specialist II

Expression help

Hi All

I have the expression below where it should display the below column values (answer_....) when we select Other on the UI and for other than OTHER, it should show the selections made

For example Behavioral Health has other values as Not Required and Required, if we select Required or Not Required, it should display that value

For example Services has other values as Not Required and Required, if we select Required or Not Required, it should display that value

if([Behavioral Health] = 'Other', answer_text_short_bhh,

if(Services = 'Other', answer_text_short_spp,

GetCurrentSelections()))

Can someone help me on the same?

Thanks

Satish

11 Replies
sunny_talwar

This me just guessing, what if you do:

Service&Facility

When user doesn't have anything selected -> Output is null

When user selects 'Others' in Services -> Output is Others

When user selects 'Others' in Facility -> Output is Others

.

.

.

and so on...

sunny_talwar

Check if the attached is what you want