Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
I am unable to read this attached Text file as tab delimited in Qlikview
Please help.
Thanks in Advance.
Raghvendra Singh
Try like:
LOAD @1,
@2,
@3,
...
@19
FROM
[.....\ReadData.txt]
(txt, codepage is 1252, explicit labels, delimiter is '\t', no quotes);
Try like:
LOAD @1,
@2,
@3,
...
@19
FROM
[.....\ReadData.txt]
(txt, codepage is 1252, explicit labels, delimiter is '\t', no quotes);
Thanks Tresesco.
Its Working.