Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Count where field is not null

Dear all,

i want to do a numeric count of data that field DATA is null, but i don't know how to do that

numericcount({$<[DATA]=NULL}>} [DELIVERIES])

Can someone explain me how to do that.

Best regards



4 Replies
Miguel_Angel_Baeyens

Hello Jordi,

You may use

numericcount({$<[DATA]={""}>} [DELIVERIES])


numericcount({$<[DATA]={"=len([DATA]) = 0"}>} [DELIVERIES])


Hope that helps

sparur
Specialist II
Specialist II

Hello, Jordi

Try that:

=count(IF(Len(DATA)>0, [DELIVERIES]))

Not applicable
Author

No ones work

sparur
Specialist II
Specialist II

Jordi, it's very strange.

because all approaches are works fine for me. see in example...