To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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 |
---|---|
14 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |