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: 
paulwalker
Creator III
Creator III

Alert Count

Hi,

PFA,

how to show ALERT count

1 Reply
Anonymous
Not applicable

In the script, write this

Testing:

LOAD

     Sector,

     [Material No],

     Plant,

     Year,

     Month,

     [Order Qty],

     [Sch Qty],

     [STO Qty],

     [Opening Stock],

     if(sum([Order Qty])+sum([STO Qty])>sum([Sch Qty])+sum([Opening Stock]),'Alert','Ok') as Alert

FROM

C:\Users\akki\Desktop\MBEWH.xlsx

(ooxml, embedded labels, table is Sheet1);

Then in pie chart take Alert as dimension, and add the expression as Count(Alert).

This will give you the count of OKs and Alerts in the pie chart