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 am trying to calculate last year revenue across product categories - the below DAX works for getting aggregated revenue for the previous year based on fiscal week, but just returns an aggregated total and does not split by category. Where am I going wrong?
Solved! Go to Solution.
Hey,
I guess that this
FILTER(ALL(Range_data)
add to the confusion, as this also removes an axisting filter from your category column.
Maybe you can give this a try:
FILTER(ALLEXCEPT('Range_data' , 'Range_data'[<category column>]) ...
Hopefully this provides you with some ideas,
Regards,
Tom
Hey,
I guess that this
FILTER(ALL(Range_data)
add to the confusion, as this also removes an axisting filter from your category column.
Maybe you can give this a try:
FILTER(ALLEXCEPT('Range_data' , 'Range_data'[<category column>]) ...
Hopefully this provides you with some ideas,
Regards,
Tom
Thanks - that worked!
User | Count |
---|---|
25 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
25 | |
12 | |
11 | |
10 | |
6 |