Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
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;