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: 
Not applicable

Set analysis syntax errore

Hi,

How to Hide Selected Field in Set analysis code and how to remove null in script level while loding .

Thanks.

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Use only one set modifier per field:

Sum({$<Shipping_Status-={'Rejected','Hold'} >}Revenue)  

View solution in original post

2 Replies
swuehl
MVP
MVP

Use only one set modifier per field:

Sum({$<Shipping_Status-={'Rejected','Hold'} >}Revenue)  

swuehl
MVP
MVP

And for filtering status in the LOAD, something like

LOAD (Shipping_Status) as Shipping_Status,

     (Country) as Country  ,

     (Areacode) as Areacode ,

    (Payment_Mode) as Payment_Mode,

(Revenue) as Revenue

FROM

(ooxml, embedded labels, table is Sheet1)

WHERE (Shipping_Status) <> 'NULL';