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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
PowerBIFreak
Helper II
Helper II

How to get YTD average of the category

Hi,

 

I have a table like this below: I have managed to get a total of the Movement Type = "Shipped" and Movement Type = "Received"

 

How how to I get an average of the total Shipped and Received. Basically, I want a YTD Average shipped and received. Is that possible? Thank you.

Posting DateMovement Type
5/31/2021Shipped
6/1/2021Shipped
6/2/2021Received
6/2/2021Shipped
6/2/2021Received
6/3/2021Received
6/3/2021Recived
6/4/2021Shipped
6/5/2021Shipped
1 ACCEPTED SOLUTION
v-easonf-msft
Community Support
Community Support

Hi,  @PowerBIFreak 

Create a index column first ,then try measure as below:

YTD_Count =
CALCULATE (
    COUNT ( 'Table'[Index] ),
    DATESYTD ( 'Table'[Posting Date] ),
    FILTER (
        ALL ( 'Table' ),
        'Table'[Movement Type] = MAX ( 'Table'[Movement Type] )
    )
)
Total_rows = 
CALCULATE (
    COUNT ( 'Table'[Index] ),
    DATESYTD ( 'Table'[Posting Date] ),
    ALL ( 'Table' )
)
YTD Average = [YTD_Count]/[Total_rows]

 

51.png

 

Please check my pbix file for more details.

 

Best Regards,
Community Support Team _ Eason
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

1 REPLY 1
v-easonf-msft
Community Support
Community Support

Hi,  @PowerBIFreak 

Create a index column first ,then try measure as below:

YTD_Count =
CALCULATE (
    COUNT ( 'Table'[Index] ),
    DATESYTD ( 'Table'[Posting Date] ),
    FILTER (
        ALL ( 'Table' ),
        'Table'[Movement Type] = MAX ( 'Table'[Movement Type] )
    )
)
Total_rows = 
CALCULATE (
    COUNT ( 'Table'[Index] ),
    DATESYTD ( 'Table'[Posting Date] ),
    ALL ( 'Table' )
)
YTD Average = [YTD_Count]/[Total_rows]

 

51.png

 

Please check my pbix file for more details.

 

Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.