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
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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.