Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone,
I have a problem with generating a html file via qlikview. I did something like this:
Table:
Load Name & ': ' & Birthday & '<br />' as Output
Resident Data
Order by Birthday;
Store Table into [\\Folder\Birthdays.html](txt);
My Problem is when I want to open the html file I always see quotation marks. I think that is because I generated a string in the qlikview script. But how can I do it in a diffrent way.
Are there any ideas?
Thanks in advance.
Theresa
It may be if you have a comma in the field Name or Birthday. QlikView adds the quotation around the field as to treat it as one field and not separate. try this:
Store Table into [\\Folder\Birthdays.html] (txt, delimiter is '\t');
It may be if you have a comma in the field Name or Birthday. QlikView adds the quotation around the field as to treat it as one field and not separate. try this:
Store Table into [\\Folder\Birthdays.html] (txt, delimiter is '\t');
Hi Adam,
thanks. This solved the problem.
Have a nice weekend!