- 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

Stacked Area accumulative Chart issue
Hi
I need to create a visual of a trend aggrigating all the items ( total 3 different items) over the quarter.
The chart should look like this:
My table looks like this :
Item Type | date |
Deployed | 25/1/2021 |
Green | 29/1/2021 |
Red | 6/2/2021 |
Yellow | 7/2/2021 |
Red | 9/3/2021 |
Green | 10/4/2021 |
Could you please guide me how to go about it ?
Thanks in advanced !
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @Anonymous ,
Please check:
1. Create a Calendar table and a Item Types table.
Calendar = CALENDAR(DATE(2021,1,1),DATE(2021,12,31))
Item Types = DISTINCT('Table'[Item Type])
2. Create relationships.
3. Create a measure and create a Area chart.
Measure =
CALCULATE (
COUNT ( 'Table'[Item Type] ),
FILTER (
ALLSELECTED ( 'Table' ),
'Table'[Item Type] = MAX ( 'Item Types'[Item Type] )
&& 'Table'[date] <= MAX ( 'Calendar'[Date] )
)
)
Best regards
Icey
If this post helps, then consider Accepting it as the solution to help other members find it faster.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @Anonymous ,
Please check:
1. Create a Calendar table and a Item Types table.
Calendar = CALENDAR(DATE(2021,1,1),DATE(2021,12,31))
Item Types = DISTINCT('Table'[Item Type])
2. Create relationships.
3. Create a measure and create a Area chart.
Measure =
CALCULATE (
COUNT ( 'Table'[Item Type] ),
FILTER (
ALLSELECTED ( 'Table' ),
'Table'[Item Type] = MAX ( 'Item Types'[Item Type] )
&& 'Table'[date] <= MAX ( 'Calendar'[Date] )
)
)
Best regards
Icey
If this post helps, then consider Accepting it as the solution to help other members find it faster.

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 | |
---|---|---|---|
10-23-2024 01:44 AM | |||
11-20-2024 07:39 AM | |||
09-06-2024 08:49 AM | |||
07-04-2024 04:00 AM | |||
08-08-2024 09:00 PM |
User | Count |
---|---|
87 | |
73 | |
54 | |
42 | |
36 |
User | Count |
---|---|
94 | |
66 | |
55 | |
50 | |
45 |