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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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;