Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Vijesh
Contributor
Contributor

Single button to select Miltiple Fields.

Hello,

How I can create a single button to select one or more fields. attached is the practice sheet. in the sheet there is description and months (Jan to Dec) are my field name. I want to create a button to select "Sep,Oct,Nov & Dec" and string value should be less than and equal to Zero.

 

** Please help me with a sample QVW file.

 

Thanks, 

1 Solution

Accepted Solutions
Gabriel
Partner - Specialist III
Partner - Specialist III

Hi,

Can I suggest that you expand your script to include a flag for values less or equal to Zero then in your UI the button that select the month should include another Select In Field FIELD = [Flag_SalesValue_LessOrEqualZero] AND VALUE = 1 . See below

// this is your original script loading from excel file
tmp:
LOAD Desctiption,
Jan18,
Feb18,
Mar18,
Apr18,
May18,
Jun18,
Jul18,
Aug18,
Sep18,
Oct18,
Nov18,
Dec18
FROM
Data.qvd
(qvd);

tmp1:

CrossTable(Month,Sales)
load * resident tmp;

drop table tmp;

Finaltb:
LOAD *, IF(Sales <= 0,1,0) AS [Flag_SalesValue_LessOrEqualZero] // check if sales or whatever fieldname this is less or equal to zero
;
LOAD *, LEFT(Month,3) As [tmp_Month] RESIDENT tmp1;

drop Table tmp1;

 

View solution in original post

9 Replies
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Use "Select in Field" as your button action. Multiple values  to be selected are separated by |. For the "Search String" value enter:

(Sep|Oct|Nov|Dec)

 

-Rob
http://masterssummit.com
http://qlikviewcookbook.com
http://www.easyqlik.com

Vijesh
Contributor
Contributor
Author

This solution not working.
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Can you post an example of what you have tried?

-Rob

Vijesh
Contributor
Contributor
Author

Please find the QVW and data File as attachment.

Gabriel
Partner - Specialist III
Partner - Specialist III

Hi,

The solution provided by Rob is right, what I think you need to add is transform your data. Using CROSSTABLE function. See below and attached script

 

// this is your original script loading from excel file
tmp:
LOAD Desctiption,
Jan18,
Feb18,
Mar18,
Apr18,
May18,
Jun18,
Jul18,
Aug18,
Sep18,
Oct18,
Nov18,
Dec18
FROM
Data.qvd
(qvd);

tmp1:

CrossTable(Month,Sales)
load * resident tmp;

drop table tmp;

Finaltb:
LOAD *, LEFT(Month,3) As [tmp_Month] RESIDENT tmp1;

drop Table tmp1;

 

In the UI, for the button to work use tmp_Month field in Select In FIeld then Search String = (Oct|Nov|Dec) .

Gabriel
Partner - Specialist III
Partner - Specialist III

Hi,

The solution provided by Rob is right, what I think you need to add is transform your data. Using CROSSTABLE function. See below and attached script

 

// this is your original script loading from excel file
tmp:
LOAD Desctiption,
Jan18,
Feb18,
Mar18,
Apr18,
May18,
Jun18,
Jul18,
Aug18,
Sep18,
Oct18,
Nov18,
Dec18
FROM
Data.qvd
(qvd);

tmp1:

CrossTable(Month,Sales)
load * resident tmp;

drop table tmp;

Finaltb:
LOAD *, LEFT(Month,3) As [tmp_Month] RESIDENT tmp1;

drop Table tmp1;

 

In the UI, for the button to work use tmp_Month field in Select In FIeld then Search String = (Oct|Nov|Dec) .

Vijesh
Contributor
Contributor
Author

Hello Friend,

The solution you have given is of selecting Months as string. my requirement is of value as string and Fields should be multiple months. please find the attachment for the sample.

 

Thanks,

V.

Gabriel
Partner - Specialist III
Partner - Specialist III

Hi,

Can I suggest that you expand your script to include a flag for values less or equal to Zero then in your UI the button that select the month should include another Select In Field FIELD = [Flag_SalesValue_LessOrEqualZero] AND VALUE = 1 . See below

// this is your original script loading from excel file
tmp:
LOAD Desctiption,
Jan18,
Feb18,
Mar18,
Apr18,
May18,
Jun18,
Jul18,
Aug18,
Sep18,
Oct18,
Nov18,
Dec18
FROM
Data.qvd
(qvd);

tmp1:

CrossTable(Month,Sales)
load * resident tmp;

drop table tmp;

Finaltb:
LOAD *, IF(Sales <= 0,1,0) AS [Flag_SalesValue_LessOrEqualZero] // check if sales or whatever fieldname this is less or equal to zero
;
LOAD *, LEFT(Month,3) As [tmp_Month] RESIDENT tmp1;

drop Table tmp1;

 

Vijesh
Contributor
Contributor
Author

Thanks for the solution.