Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
PHEstaciMa1
Helper I
Helper I

How to calculate latest estimate using DAX

Hi All, I need help in putting a correct DAX on calculating latest estimate of a frequency rate. power bi query 3.JPG

Here's the formula I crafted in EXCEL. 

 

Formula in EXCELFormula in EXCEL

 

Thanks in advance!

1 ACCEPTED SOLUTION
v-easonf-msft
Community Support
Community Support

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] )
)

183.png

Best Regards,
Community Support Team _ Eason

View solution in original post

5 REPLIES 5
v-easonf-msft
Community Support
Community Support

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] )
)

183.png

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. 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.