Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
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.....