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: 
santhosh_k_n
Creator II
Creator II

multibox object

Hi all,

In the multi box object, when no value is selected i need to show 'Please select value' or '-select-'

Please guide me.

14 Replies
nizamsha
Specialist II
Specialist II

In caption u can write or u can use help text its in the bottom from that u can do but for help text u have to select

MK_QSL
MVP
MVP

Consider that you have below dimensions in your multi box

Brand

Customer

Right Click >> General Tab >> Title >> write below expression

=IF((GetSelectedCount(Brand)+GetSelectedCount(Customer))=0,'Select Any Value','')

Hope this helps....

Not applicable

In caption of multibox, you can write the expression including your all field names used in multibox like:

if(getselectedcount(Field1)=0 and getselectedcount(Field2)=0 and getselectedcount(Field3)=0,'Select Any Field','')

In this case it will display help symbol when no any field is selected and after clicking on help symbol it will display 'Select Any Field' message.

If you don't want to display it in caption then you can take seperate text box and write same expression in it.

Hope this will help u..!

Roop
Specialist
Specialist

in title box:

if(Len(DimA) + Len(DimB) = 0, 'Please select a value' , '')

for DimA and DimB fields in the multi-box

santhosh_k_n
Creator II
Creator II
Author

Thanks all,

I dont want to display select your value in cation or help text as am not using the caption here.

The 'select' words should be beside the drop down arrow before selecting the value

rustyfishbones
Master II
Master II

Add a Label to the Field like this

2014-04-11_1306.png

rustyfishbones
Master II
Master II

Add this as the label expression

2014-04-11_1309.png

nizamsha
Specialist II
Specialist II

In Label u can add This one

=if(GetFieldSelections(Month),'Month','Select Value')

santhosh_k_n
Creator II
Creator II
Author

Hi Alan,

I tried this, But i didnt work