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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All, I need help in putting a correct DAX on calculating latest estimate of a frequency rate.
Here's the formula I crafted in EXCEL.
Formula in EXCEL
Thanks in advance!
Solved! Go to Solution.
Hi, @PHEstaciMa1
Try formulas as below:
calculated column:
Manhours2 =
VAR value1 =
AVERAGEX (
FILTER ( 'Table', 'Table'[Manhours] <> BLANK () ),
'Table'[Manhours]
)
RETURN
IF ( ISBLANK ( 'Table'[Manhours] ), value1, 'Table'[Manhours] )
measure:
M_Frequency Rate =
DIVIDE (
SUM ( 'Table'[Count of Incidents] ) * 1000000,
SUM ( 'Table'[Manhours2] )
)
Best Regards,
Community Support Team _ Eason
Hi, @PHEstaciMa1
Try formulas as below:
calculated column:
Manhours2 =
VAR value1 =
AVERAGEX (
FILTER ( 'Table', 'Table'[Manhours] <> BLANK () ),
'Table'[Manhours]
)
RETURN
IF ( ISBLANK ( 'Table'[Manhours] ), value1, 'Table'[Manhours] )
measure:
M_Frequency Rate =
DIVIDE (
SUM ( 'Table'[Count of Incidents] ) * 1000000,
SUM ( 'Table'[Manhours2] )
)
Best Regards,
Community Support Team _ Eason
Hi @v-easonf-msft adding the creation of calendar table and the initial solution you provided, it solves my issue. thank you very much!
Hi @v-easonf-msft I tried your but somehow the remaining months of 2021 which has no data does not appear in my table after I unpivot the column. You may check the file I uploaded here in this link --> How to calculate latest estimate using DAX
Hi, @PHEstaciMa1
Not fully sure what you mean.
Please check the table visual I created.
Best Regards,
Community Support Team _ Eason
I see that you have create a calendar table for a period of 2018 to end of 2021, I guess that will be fine. Let me try it again and let you know ASAP.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!