Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I normally store all my output files as QVD for different purposes, but I was planning to store some information in Excel files (output to our Sales force who don't have access to Qlikview). However, the below store command gives me a file that is stored in the right location, but it seems to be corrupt when I open it. I have tried with the ending .xlxs, .csv, but to no avail. Any idea?
Store Salesman_Excel into [X:\Salesman_File\Salesman_A.xls];
Not sure if I should add the following behind.
(ooxml, embedded labels, table is Sheet1)
hi again,
STORE Salesman_Excel into [X:\Salesman_File\Salesman_A.csv] (txt);
hi again,
STORE Salesman_Excel into [X:\Salesman_File\Salesman_A.csv] (txt);
You saved my day!
Thanks
With pleasure!
You should look at your other post as well (the one with multiple selections in field).
Have a great day!
I looked at them briefly with multiple selection. I will get to them, this week.
One of the problems with comma separated files, is that some fields might contain a comma. This will mess up the whole line, as none of the columns will match up. It's not a huge problem, but in case it would be material values, then it would be.
Is there a way to use another separator that is not as common as a comma? Semi colon would be less frequently used for example, or other signs.
Hi,
I don't know if you managed to resolve your problem as it is 2021 but maybe someone else will witness similar problem (for instance I got into this thread today)
To solve it (so create separator other than coma) please use
STORE Salesman_Excel into [X:\Salesman_File\Salesman_A.csv] (txt, delimiter is ';');
for tab
(txt, delimiter is '\t');