As we know QlikView stores text files only in UTF8 encoding.
For example
STORE MyTable to Export.csv(txt);
will save Export.csv as a UTF8 file.
If you need a file in ANSI encoding, QlikView does not provide an option to save it.
So I did this tiny program to convert the output of QlikView into ANSI
You can use it freely (no fees to me ) and distribute to your friends.
Example of use of it inside a QlikView Script:
STORE MyTable into Export.tmp(txt);
EXECUTE utf8_to_ansi.exe Export.tmp Export.csv;
utf8_to_ansi.exe (5.0 K)
Comments