This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello All,
I want to achieve cumulative growth of Product with respective to Year-Month. I am able to achieve it with respect to Year-Month but when I try to achieve it based on other dimension like Product, my logic fails. I am sharing a simple example in the screenshot
Kindly let me know if there is a way to achieve this, also will the logic apply to Product-->Sub-Product-->Year-Month
Thank you for your time
Warm Regards
SK
Solved! Go to Solution.
Hi, @sshantaram
To create a measure like this:
Measure =
CALCULATE (
SUM ( 'Table'[Sales] ),
FILTER (
ALLEXCEPT ( 'Table', 'Table'[Product] ),
'Table'[Date] <= MAX ( 'Table'[Date] )
)
)
Result:
Please refer to the attachment below for details
Hope this helps.
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @sshantaram
To create a measure like this:
Measure =
CALCULATE (
SUM ( 'Table'[Sales] ),
FILTER (
ALLEXCEPT ( 'Table', 'Table'[Product] ),
'Table'[Date] <= MAX ( 'Table'[Date] )
)
)
Result:
Please refer to the attachment below for details
Hope this helps.
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@sshantaram , first you need to unpivot the year data. That will give value column
https://radacad.com/pivot-and-unpivot-with-power-bi
You need to have a year table
Create a measure like one below and use in matrix with year and product
calculate(sum(Table[Value]) , filter(allselected(year), Year[Year] <= Max(Year[Year])))
@amitchandak Thank you for your reply. I have used this calculated measure before "calculate(sum(Table[Value]) , filter(allselected(year), Year[Year] <= Max(Year[Year])))" but it only works when you have only Time Dim .. but if you add a Product Dim along with Time Dim, we wont get the result.
Kindly help.
Warm Regards,
SK
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 25 | |
| 21 | |
| 18 | |
| 17 |
| User | Count |
|---|---|
| 62 | |
| 34 | |
| 33 | |
| 24 | |
| 23 |