Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I have a table contains ID, Week, Label
Type | Week | Label |
A | W1 | Y |
A | W1 | Y |
B | W1 | Y |
B | W2 | Y |
B | W2 | N |
C | W2 | N |
B | W3 | Y |
C | W3 | Y |
I want to use this table to create a matrix visual, which value is cumulative number of count of ID every week when Label = "Y".
So every week's value is the total of Labels = "Y" before that week, and I want it can show different color by different Type.
How can I do that? Any answer will be helpful!!
Solved! Go to Solution.
Hi @Anonymous
Thanks for the reply from @bhanu_gautam .
Here is the testing I did, hope it helps.
Create two measures as follow
count yes = CALCULATE(COUNTROWS('Table'), 'Table'[Label] = "Y")
cumulative = CALCULATE([count yes], FILTER(ALLSELECTED('Table'[Week]), 'Table'[Week] <= MAX('Table'[Week])))
Since I noticed that your title mentioned stacked column chart, but your text mentioned matrix visual, I did both.
stacked column chart:
matrix visual:
If you need to display different types and colors in the matrix, you need to make the following settings.
conditional formatting -> Background color
Best Regards,
Yulia Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
Thanks for the reply from @bhanu_gautam .
Here is the testing I did, hope it helps.
Create two measures as follow
count yes = CALCULATE(COUNTROWS('Table'), 'Table'[Label] = "Y")
cumulative = CALCULATE([count yes], FILTER(ALLSELECTED('Table'[Week]), 'Table'[Week] <= MAX('Table'[Week])))
Since I noticed that your title mentioned stacked column chart, but your text mentioned matrix visual, I did both.
stacked column chart:
matrix visual:
If you need to display different types and colors in the matrix, you need to make the following settings.
conditional formatting -> Background color
Best Regards,
Yulia Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , You can create a calculated column for this
CumulativeCount =
CALCULATE(
COUNTROWS('YourTable'),
FILTER(
ALL('YourTable'),
'YourTable'[Label] = "Y" &&
'YourTable'[Week] <= EARLIER('YourTable'[Week]) &&
'YourTable'[Type] = EARLIER('YourTable'[Type])
)
)
Proud to be a Super User! |
|
@bhanu_gautam Hi! Thank you for the quick reply.
I have tried your answer, but some parts shows warning:
'YourTable'[Week] <= EARLIER('YourTable'[Week]) &&
'YourTable'[Type] = EARLIER('YourTable'[Type])
Warning says: EARLIER/EARLIEST refers to an earlier row context which doesn't exist.
Could you please help me to fix it? Thanks a lot!!
@Anonymous , Update measure
CumulativeCount =
VAR CurrentWeek = 'YourTable'[Week]
VAR CurrentType = 'YourTable'[Type]
RETURN
CALCULATE(
COUNTROWS('YourTable'),
FILTER(
ALL('YourTable'),
'YourTable'[Label] = "Y" &&
'YourTable'[Week] <= CurrentWeek &&
'YourTable'[Type] = CurrentType
)
)
Proud to be a Super User! |
|
@bhanu_gautam Hi,
It's still not working.
If I delete the following dax, it can work but not the result I want.
'YourTable'[Week] <= CurrentWeek &&
'YourTable'[Type] = CurrentType
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
72 | |
67 | |
51 | |
38 | |
26 |
User | Count |
---|---|
89 | |
52 | |
45 | |
39 | |
38 |