Forum Discussion
ewuchatka
Helper II
8 years agoCount if with existing measure
Hello I've had almost a year-long break from Power BI and I've tried to look for the answer on the forum but without any luck. I would appreciate your help. I am trying to recreate COUNT IF ...
ewuchatka
Helper II
8 years ago
Thank you that's a great step towards what I need, it helps me calculate a total number of Weeks.
How can I amend the formula to get to number of weeks where AUP is below 1.10 i.e. [AUP]<=1.10?
Thanks
Ewa
tex628
Community Champion
8 years agoTry creating a measure like this:
Measure = Calculate(Countrows([table]);[AUP]>1)
Assuming you have one row per week, place this in a table with a row for each year you should get the amount of weeks > 1.
/ Johannes