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: 
swatitomar
Contributor III
Contributor III

On Action button Select multiple value in Field

Hi All,

My Requirement is to select Year greater than equal to current fiscal year in Filter Pane. On Button Action , I need to Perform the activity. Can anyone help . 

Output: FY21, FY22,FY23

Year
FY19
FY20
FY21
FY22
FY23
Labels (2)
1 Reply
mato32188
Specialist
Specialist

Hi @swatitomar ,

let's do it in steps. First create numeric representation of year field:

table:

load

Year,

num(20&right(FisYear,2)) as YearNum

from XXX;

Second, create temp table and variable for years to be selected in script editor

fis_year_selection:
load concat(distinct Year,';') as FisYear_Selection
Resident tmp
where YearNum>=Year(Today());

let vFiscalYearsSelection = Peek('FisYear_Selection',0,'fis_year_selection');

drop table fis_year_selection;

Third, create button object with following settings

mato32188_0-1620891877277.png

 

BR

m

ECG line chart is the most important visualization in your life.