Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Need to Capture Null value in List Box

Hi,

          I am having blank values in "Arrival Place" field, But when i import the same file into Qlikview, It is not showing "Empty row". Which means I need to figure out the Data where the "Arrival Place = Empty". I have attached screen shot and also Excel file for reference. Thank in advance.Need to Capture Null value in List Box.jpg

1 Solution

Accepted Solutions
sunny_talwar

Try this script:

NULLASVALUE *;

SET NullValue = ' ';

Table:

LOAD Name,

    Department,

    [Arrival Place],

    [Departure Place],

    [Arrival Time],

    [Departure Time],

    [Total Journey Hours],

    Amount,

    [Booking Date]

FROM

Example1.xlsx

(ooxml, embedded labels, table is Sheet1);

Capture.PNG

View solution in original post

2 Replies
sunny_talwar

Try this script:

NULLASVALUE *;

SET NullValue = ' ';

Table:

LOAD Name,

    Department,

    [Arrival Place],

    [Departure Place],

    [Arrival Time],

    [Departure Time],

    [Total Journey Hours],

    Amount,

    [Booking Date]

FROM

Example1.xlsx

(ooxml, embedded labels, table is Sheet1);

Capture.PNG

Anonymous
Not applicable
Author

Awesome, Thanks for your quick reply Sunny. Working Perfect.....