Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
suvechha_b
Creator III
Creator III

How to make the default value in multi box as Processed :

1. How to make the default value in multi box as Processed :

see eg,

Capture.PNG

2. How can I put the chart value as 'Processed' and 'Unprocessed'.

eg, when category of sales selected as ' Processed ' , then the chart should show 'Processed Aspen Daily Sales Report' in upper case

and when category of sales selected as ' Unprocessed ' , then the chart should show 'Unprocessed Aspen Daily Sales Report' in upper case

Capture.PNG

1 Solution

Accepted Solutions
settu_periasamy
Master III
Master III

Hi,

Try this,

1. Select the Processed in the Category Field  and in the Multibox Properties -> Presentation Tab -> Always One Selected Value

       (May be You can try to use the Trigger When file Open)

2.  Put the below expression in the Chart Properties -> General -> Window Title

If ([Category of Sales] = 'Processed', Upper('Processed Aspen Daily Sales Report'),

      If([Category of Sales] = 'Unprocessed',Upper('Unprocessed Aspen Daily Sales Report'))

View solution in original post

3 Replies
Chanty4u
MVP
MVP

settu_periasamy
Master III
Master III

Hi,

Try this,

1. Select the Processed in the Category Field  and in the Multibox Properties -> Presentation Tab -> Always One Selected Value

       (May be You can try to use the Trigger When file Open)

2.  Put the below expression in the Chart Properties -> General -> Window Title

If ([Category of Sales] = 'Processed', Upper('Processed Aspen Daily Sales Report'),

      If([Category of Sales] = 'Unprocessed',Upper('Unprocessed Aspen Daily Sales Report'))