How can I get the average value of the data in column A only if there are more than 3 numbers greater than zero? It’s basically the equivalent of
SELECT AVG(IIF(COUNT(IIF(columnA>0,1,0))>3,columnA,Null)) I think, but aggregate functions can’t be nested.
I need to get this average for each...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.