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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
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 (1)
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!