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: 
saivina2920
Creator
Creator

How do we count using multiple Conditions along with null value

How do we count using multiple Conditions along with null value ..?

For Example, 

I am counting null value and my expression is below.

1st Expression ==>       =Count(If(Len(Trim([Sales]))=0,[Sales])) 

with the above, i just want to check two more condition as mentioned below.

2nd Expression ==>  ({<[Current Status] = {'*ISSUE FOR CHECK*'}>} DISTINCT [PRODUCT ID NUMBER])

How do we combine 1st and 2nd expression. It means How do we count using multiple Conditions along with null value ..?

Labels (2)
1 Solution

Accepted Solutions
raman_rastogi
Partner - Creator III
Partner - Creator III

 May be like this

Count({<[Sales]= {"=len(trim([Sales])) =0"},[Current Status] = {"*ISSUE FOR CHECK*"}>} DISTINCT [PRODUCT ID NUMBER])

  

View solution in original post

2 Replies
raman_rastogi
Partner - Creator III
Partner - Creator III

 May be like this

Count({<[Sales]= {"=len(trim([Sales])) =0"},[Current Status] = {"*ISSUE FOR CHECK*"}>} DISTINCT [PRODUCT ID NUMBER])

  

saivina2920
Creator
Creator
Author

Excellent...It's working..