Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
ID | Date | Day | IsGood |
1 | 1/1/2018 | Monday | TRUE |
2 | 1/1/2018 | Monday | TRUE |
3 | 1/1/2018 | Monday | TRUE |
4 | 1/2/2018 | Tuesday | TRUE |
5 | 1/3/2018 | Wednesday | TRUE |
6 | 1/3/2018 | Wednesday | TRUE |
1 | 1/4/2018 | Thursday | TRUE |
2 | 1/5/2018 | Friday | FALSE |
3 | 1/5/2018 | Friday | TRUE |
9 | 1/5/2018 | Friday | FALSE |
10 | 1/6/2018 | Saturday | TRUE |
11 | 1/7/2018 | Sunday | FALSE |
12 | 1/7/2018 | Sunday | TRUE |
13 | 1/8/2018 | Monday | FALSE |
14 | 1/9/2018 | Tuesday | TRUE |
Hi I am looking for some help, if I want to calculate daily good rate( Daily True/ Dail True and False) , how do I create measure?
Solved! Go to Solution.
Hi @Hakimi99999,
Try this calcultated measure:
Daily good rate = CALCULATE ( COUNTA ( DailyData[IsGood] ); DailyData[IsGood] = TRUE () ) / CALCULATE ( COUNTA ( DailyData[IsGood] ); ALLSELECTED ( DailyData[IsGood] ) )
As you can see below it will give you the percentage on the selected date:
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @Hakimi99999,
Try this calcultated measure:
Daily good rate = CALCULATE ( COUNTA ( DailyData[IsGood] ); DailyData[IsGood] = TRUE () ) / CALCULATE ( COUNTA ( DailyData[IsGood] ); ALLSELECTED ( DailyData[IsGood] ) )
As you can see below it will give you the percentage on the selected date:
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em Português