The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello Community,
I'm trying to create a card visual showing a "Number of Weeks with Over 200 count"
I have two tables, date table and my other table where my ID count comes from, joining on a date field. So far, I've created a measure, "# Over 200" that indicates which week has a value over 200.
Now, I need to count those weeks and display a number of weeks in a card visual. Any suggestions?
Solved! Go to Solution.
Hi @lukass ,
I suggest you to create a new measure based on [# Over 200].
Number of Weeks with Over 200 count =
SUMX ( VALUES ( 'TableName'[WorkWeek] ), [# Over 200] )
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @lukass ,
I suggest you to create a new measure based on [# Over 200].
Number of Weeks with Over 200 count =
SUMX ( VALUES ( 'TableName'[WorkWeek] ), [# Over 200] )
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.