Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
Rajitha1
Contributor III
Contributor III

How to create parameter

Rajitha1_0-1701060776179.png

Hi Team,

Here i am replicating dashboard from Power BI to Qlik Sense. That snapshot from Power BI i.e. parameter, PROFIT_AND_LOSS_TGT (IFFCO)_Mig is table name and [Sales Marketing Product Group] is column name. In dashboard when we drag the parameter fields then that columns data will be reflected. how to do in Qlik sense script.

 
Thanks,
Rajitha

 

Labels (1)
1 Reply
Aasir
Creator III
Creator III

Do select this dynamically in load script

// Your parameter value, replace 'your_parameter_value' with the actual parameter value
LET vSelectedColumn = 'your_parameter_value';

// Load data
YourTable:
LOAD
// Other fields...
[Sales Marketing Product Group],
// Use the parameter value dynamically to select the column
$(vSelectedColumn) as SelectedColumn
FROM YourDataSource.qvd;