The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hello I have a question about the Sumx function, I want you to add me for example only the sales of each date, such as: "12/08/2023"
I appreciate your help
Hey,
not sure if I understand your question correctly, but this will do the trick:
measure =
SUMX(
VALUES('<tablename>'[Date])
, CALCULATE( SUM( '<tablename>'{Sales])
)
But maybe you are looking for this:
measure =
SUMX(
VALUES('<tablename>'[Date])
, CALCULATE( SUM( '<tablename>'{Sales] ) , KEEPFILTERS( '<tablename>'[Date] = '2023-09-25' ) )
)
If none of the above is returning what you are looking for, please provide a visual showcasing the requirement.
Regards,
Tom
User | Count |
---|---|
65 | |
61 | |
60 | |
53 | |
27 |
User | Count |
---|---|
181 | |
88 | |
70 | |
48 | |
46 |