Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Create QlikSense Table Showing counts for NULL, Total Rows, % NULL

Hello,

I have the data in following table that am trying to replicate in Qlik Sense the calculations I perform in Excel to count the total number of rows of data for each data item as well as the total number of NULL values in each column.

In excel for each column I would use the following calculations:

Count NULL = COUNTBLANK(Column_X)
Count NOT NULL = COUNTA(Column_X)
Total Count = (Count NULL) + (Count NOT NULL)
% NULL = Count NULL/TotalCount

   

I have attached a file Qlik_NULL_Count_Test_Data.csv  with sample data that shows the values I am wishing to calculate and display.

How would I do this in Qlik Sense?

Many thanks

 

1 Solution

Accepted Solutions
amit_gupta
Contributor III
Contributor III

Hi Matthew,

There is a concept called, "Cross table", you can use here.

Please find Solution:

Load script==>

NullTest:

CrossTable(Fields, Data)

LOAD RowNo() as NUM,

ID,

    [Start Date],

    [End Date],

    [Number of Cycles],

    Protocol,

    [Drug Name],

    Dose,

    Route,

    Frequency,

    [Frequency Unit],

    Day,

    [Cycle Number],

    [Cycle Start Date],

    [Cycle End Date]

FROM [lib://DEMO/Qlik_NULL_Count_Test_Data.csv]

(txt, codepage is 28591, embedded labels, delimiter is ',', msq);

Once reload Done. Take Table Chart use following dimension & expression

Dimension:


Parameter => Fields

Measure:


Total Null =>  Sum(If(Data='',1,0))

Total Not Null => Sum(If(Data='',0,1))

Total =>  Count(Data)

                    OR

        Sum(If(Data='',1,0))  Sum(If(Data='',0,1))


% OF Null => Num(Sum(If(Data='',1,0))/Count(Data),'#,#0.0%')    <<== Final Result



Data Validation also done . please find screenshot for reference.


Final Result.png



Note: In CSV file, which you have provided, For Some Column Count Not Null is not correct, For an example : For Not Null Count for Drug Name, End Date, Route, Day, instead of COUNTA(), Count () function has been used, I think. Other wise, everything validated.



I hope, it will work for you , If it works, mark as correct answer, so that others can also direct reach to answer.

View solution in original post

2 Replies
amit_gupta
Contributor III
Contributor III

Hi Matthew,

There is a concept called, "Cross table", you can use here.

Please find Solution:

Load script==>

NullTest:

CrossTable(Fields, Data)

LOAD RowNo() as NUM,

ID,

    [Start Date],

    [End Date],

    [Number of Cycles],

    Protocol,

    [Drug Name],

    Dose,

    Route,

    Frequency,

    [Frequency Unit],

    Day,

    [Cycle Number],

    [Cycle Start Date],

    [Cycle End Date]

FROM [lib://DEMO/Qlik_NULL_Count_Test_Data.csv]

(txt, codepage is 28591, embedded labels, delimiter is ',', msq);

Once reload Done. Take Table Chart use following dimension & expression

Dimension:


Parameter => Fields

Measure:


Total Null =>  Sum(If(Data='',1,0))

Total Not Null => Sum(If(Data='',0,1))

Total =>  Count(Data)

                    OR

        Sum(If(Data='',1,0))  Sum(If(Data='',0,1))


% OF Null => Num(Sum(If(Data='',1,0))/Count(Data),'#,#0.0%')    <<== Final Result



Data Validation also done . please find screenshot for reference.


Final Result.png



Note: In CSV file, which you have provided, For Some Column Count Not Null is not correct, For an example : For Not Null Count for Drug Name, End Date, Route, Day, instead of COUNTA(), Count () function has been used, I think. Other wise, everything validated.



I hope, it will work for you , If it works, mark as correct answer, so that others can also direct reach to answer.

Anonymous
Not applicable
Author

Thank you Amit,

that seems to have worked. I'vemarked the answer as correct.

A further question; My load statement loads data from many unique tables holding the same data, is it possible to simply add the CrossTable and LOAD statements to each existing unique table load?

CrossTable(Fields, Data)

LOAD RowNo() as NUM,

or do i need to duplicate each table load with the first simply loading the dataand the second doing the Field counts?

thanks