Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikeers
Creator II
Creator II

The variable part of the file name in Store function.

Hi everyone!

I have (in loads script):

Store test1 into [(...).test1_xxx.csv] (txt, delimiter is ';');

 

Is it possible to insert a variable value instead of xxx?

 

How to do it?

Labels (4)
1 Solution

Accepted Solutions
Anil_Babu_Samineni

Why not?

SET Variable = 'xxx';

Then, Try like

Store test1 into [(...).test1_$(Variable).csv] (txt, delimiter is ';');

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

2 Replies
Anil_Babu_Samineni

Why not?

SET Variable = 'xxx';

Then, Try like

Store test1 into [(...).test1_$(Variable).csv] (txt, delimiter is ';');

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
qlikeers
Creator II
Creator II
Author

Thanks!