Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello
I have a table that groups the sales amount by date and category. That way I can use the date and category to filter the sales amount
I want to save space deleting that table and use only one dax to get the final sales amount. Something like SUMX(GROUPBY(...)). The problem is that I can't use filters when I use that dax
Is there a way to create that dax and use filters?
Thank you,
Solved! Go to Solution.
Hi, @marami21
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
Table:
You may try to create a measure like below.
Result =
SUMX(
SUMMARIZE(
'Table',
'Table'[Category],
'Table'[Date],
"Sales",
SUM('Table'[Sales])
),
[Sales]
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @marami21
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
Table:
You may try to create a measure like below.
Result =
SUMX(
SUMMARIZE(
'Table',
'Table'[Category],
'Table'[Date],
"Sales",
SUM('Table'[Sales])
),
[Sales]
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @marami21 ,
Can you please share some sample data and what you are trying to achieve?
Thanks,
Pragati
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
72 | |
62 | |
51 | |
48 |
User | Count |
---|---|
206 | |
90 | |
61 | |
59 | |
57 |