Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
wunderch
Creator
Creator

No blanks in Listbox displayed

I have the following problem:

I have an Excel where the text is with blanks.

When I load the Excel the blanks are not displayed in a listbox.

Is there a chance to display blanks in a listbox?

Regards

Chris

1 Solution

Accepted Solutions
sunny_talwar

Try this code:

SET Verbatim = 1;

LOAD Dim1

FROM

[TESTCW_EXCEL.xlsx]

(ooxml, embedded labels, table is Tabelle1);

Capture.PNG

View solution in original post

3 Replies
sunny_talwar

Try this code:

SET Verbatim = 1;

LOAD Dim1

FROM

[TESTCW_EXCEL.xlsx]

(ooxml, embedded labels, table is Tabelle1);

Capture.PNG

awhitfield
Partner - Champion
Partner - Champion

Hi Christian,

see below:

Verbatim

Normally all field values are automatically stripped of preceding and succeeding blank characters (ASCII 32) before being loaded into the QlikView database. Setting this variable to 1 suspends the stripping of blank characters.

Example:

set Verbatim = 1;

HTH

Andy

wunderch
Creator
Creator
Author

Thanks! It's so easy!