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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
KV2022
Helper II
Helper II

average of a measure over a dimension along the time axis

Hi, I have data like this 

KV2022_0-1669103652720.png

 

I need a graph like this 

KV2022_2-1669103059005.png

Please help.  I have to show average of TAT days by stage name along the time axis .

Days at stage in the 2nd graph = TAT days in the data table

stage in the 2nd graph = stg_nm in the table

TAT days is calculated from fact

Stg_nm, - comes from dimension(which has dim_proj_stg_key)  which is connected to dim_proj_stg_key in fact

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

Hi @KV2022 ,

 

This is my test fact table:

vyadongfmsft_0-1669188690151.png

 

Dim table:

vyadongfmsft_1-1669188715721.png

 

Create two measures:

TAT =
CALCULATE (
    DATEDIFF ( MIN ( [Date] ), MAX ( [Date] ), DAY ),
    FILTER (
        'Fact',
        'Fact'[dim_proj_stg_key] = SELECTEDVALUE ( 'Fact'[dim_proj_stg_key] )
            && 'Fact'[YearMonth] = SELECTEDVALUE ( 'Fact'[YearMonth] )
    )
)


Average_TAT =
AVERAGEX (
    FILTER (
        ALL ( 'Fact'[YearMonth] ),
        'Fact'[YearMonth] = SELECTEDVALUE ( 'Fact'[YearMonth] )
    ),
    [TAT]
)

 

I think this is the result you want:

vyadongfmsft_2-1669189013695.png

 

If I misunderstand your demands, please share with me some screenshots of your data after hiding sensitive information and tell me what's your expected output.

 

Best regards,

Yadong Fang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yadongf-msft
Community Support
Community Support

Hi @KV2022 ,

 

This is my test fact table:

vyadongfmsft_0-1669188690151.png

 

Dim table:

vyadongfmsft_1-1669188715721.png

 

Create two measures:

TAT =
CALCULATE (
    DATEDIFF ( MIN ( [Date] ), MAX ( [Date] ), DAY ),
    FILTER (
        'Fact',
        'Fact'[dim_proj_stg_key] = SELECTEDVALUE ( 'Fact'[dim_proj_stg_key] )
            && 'Fact'[YearMonth] = SELECTEDVALUE ( 'Fact'[YearMonth] )
    )
)


Average_TAT =
AVERAGEX (
    FILTER (
        ALL ( 'Fact'[YearMonth] ),
        'Fact'[YearMonth] = SELECTEDVALUE ( 'Fact'[YearMonth] )
    ),
    [TAT]
)

 

I think this is the result you want:

vyadongfmsft_2-1669189013695.png

 

If I misunderstand your demands, please share with me some screenshots of your data after hiding sensitive information and tell me what's your expected output.

 

Best regards,

Yadong Fang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi, thanks for the reply.  I am getting result like this. 

The TAT and Average TAT are same for every stage. 

In the data model, the stage names can be duplicate in fact meaning the stages can have iterations for every month. 

The last 2 columns  in this picture below  are minimum iteration and max iteration for a stage in a month. for eg; in Oct 2017, publisher check stage has 2 iteration. So the average should be 8 TAT days average to 4 days for 2 iterations in the stage.

But Average TAT is same as TAT . Is this correct? 

Average_TAT =
AVERAGEX (
    FILTER (
        ALL ( dim_dt[MonthYear] ),
        dim_dt[MonthYear] = SELECTEDVALUE ( dim_dt[MonthYear] )
    ),
    [TAT(Days)]
)KV2022_4-1669608101740.png

 

Thanks.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.