Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,please tell me how to get it number 7 use set analysis, where avg > 1000
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
Try this:
Count(
Aggr(
if( Sum({<state={"successful"},main_category={"Food"}>} usd_pledged_real / backers) >1000 ,Name),
Name))
Try this:
Count(
Aggr(
if( Sum({<state={"successful"},main_category={"Food"}>} usd_pledged_real / backers) >1000 ,Name),
Name))
Thank you very much, removed the extra spaces and works!