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: 
Not applicable

Can I use a field selection as a Script parameter

Hello

I would like to let people choose what they want to reload.

then, I have a list in a field that I'ld like people to select and then the reload is executing on THIS SELECTION.

Here I don't knwo how to do.

can someone help me?

my goal :

for each extractionDate in <List selected in the field>

PLUTO_ResourcesFinal4:

                    Load *

                     FROM [$(vHistoricPath)$(extractionDate)-PLUTOResourcesFinal.qvd] (qvd);

next extractionDate

thanks in advance

Jerome

Labels (1)
1 Solution

Accepted Solutions
Not applicable
Author

Hello

I found a solution to mu problem.

I'm triggering update of a variable based on the selected values of my field:

myvariable =GetFieldSelections(<My Field>)

then the script is refering to that variable

my goal :

for each extractionDate in myvariable

PLUTO_ResourcesFinal4:

                    Load *

                     FROM [$(vHistoricPath)$(extractionDate)-PLUTOResourcesFinal.qvd] (qvd);

next extractionDate

this thread can be closed

View solution in original post

1 Reply
Not applicable
Author

Hello

I found a solution to mu problem.

I'm triggering update of a variable based on the selected values of my field:

myvariable =GetFieldSelections(<My Field>)

then the script is refering to that variable

my goal :

for each extractionDate in myvariable

PLUTO_ResourcesFinal4:

                    Load *

                     FROM [$(vHistoricPath)$(extractionDate)-PLUTOResourcesFinal.qvd] (qvd);

next extractionDate

this thread can be closed