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

Count Set analysis Help

Hi,please tell me how to get it number 7 use set analysis, where avg > 1000

Vittore8_0-1589389661232.png

Count(
Aggr(Sum({<state={"successful"},main_category={"Food"}>} usd_pledged_real / backers)) -- for example this, but I don't know if this is the right way

 

Labels (1)
1 Solution

Accepted Solutions
Gui_Approbato
Partner - Creator III
Partner - Creator III

Try this:

 

Count(

Aggr(

if(        Sum({<state={"successful"},main_category={"Food"}>} usd_pledged_real / backers) >1000 ,Name),

Name))

View solution in original post

3 Replies
Gui_Approbato
Partner - Creator III
Partner - Creator III

Try this:

 

Count(

Aggr(

if(        Sum({<state={"successful"},main_category={"Food"}>} usd_pledged_real / backers) >1000 ,Name),

Name))

Vittore8
Creator
Creator
Author

Vittore8_0-1589390588392.png

 

Vittore8
Creator
Creator
Author

Thank you very much, removed the extra spaces and works!