- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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 Date | Movement Type |
5/31/2021 | Shipped |
6/1/2021 | Shipped |
6/2/2021 | Received |
6/2/2021 | Shipped |
6/2/2021 | Received |
6/3/2021 | Received |
6/3/2021 | Recived |
6/4/2021 | Shipped |
6/5/2021 | Shipped |
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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]
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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]
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
Join us at the Microsoft Fabric Community Conference
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Power BI Monthly Update - February 2025
Check out the February 2025 Power BI update to learn about new features.

Subject | Author | Posted | |
---|---|---|---|
12-20-2024 06:44 AM | |||
Anonymous
| 09-13-2022 12:24 AM | ||
01-24-2025 12:23 PM | |||
11-04-2024 06:51 AM | |||
02-21-2018 11:52 AM |
User | Count |
---|---|
87 | |
81 | |
53 | |
38 | |
35 |