Skip to main content
Announcements
Global Transformation Awards! Applications are now open. Submit Entry
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

HTML - Problem with <br>

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

1 Solution

Accepted Solutions
adamwilson
Partner - Creator
Partner - Creator

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');

View solution in original post

2 Replies
adamwilson
Partner - Creator
Partner - Creator

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');

Anonymous
Not applicable
Author

Hi Adam,

thanks. This solved the problem.

Have a nice weekend!