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.
Hi Team
i am using data range slicer in report
i need to clalculate sum of sales of max date of slicer like (30-09-2022)
Solved! Go to Solution.
Hi,
I am not sure if I correctly understood your question, but please check the below measure whether it suits your requirement.
new measure: =
VAR _maxdate =
MAX ( Query1[Report Date] )
RETURN
CALCULATE (
SUM ( Query1[Gross Gen (incl NC Gen) Day - (MU)] ),
Query1[Report Date] = _maxdate
)
Hi,
I am not sure if I correctly understood your question, but please check the below measure whether it suits your requirement.
new measure: =
VAR _maxdate =
MAX ( Query1[Report Date] )
RETURN
CALCULATE (
SUM ( Query1[Gross Gen (incl NC Gen) Day - (MU)] ),
Query1[Report Date] = _maxdate
)
User | Count |
---|---|
15 | |
11 | |
8 | |
8 | |
7 |
User | Count |
---|---|
21 | |
20 | |
11 | |
10 | |
7 |