Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi all!
i use this DAX
Solved! Go to Solution.
Hi @RT6
Thanks for the reply from @Dangar332 , please allow me to provide another insight:
My sample:
Create a measure as follows
comparison =
VAR _previous = CALCULATE(SUM(Market[Sales]), FILTER(Market, [Date] IN SAMEPERIODLASTYEAR('Calendar'[Date])))
VAR _current = CALCULATE(SUM(Market[Sales]), FILTER(ALL(Market), [Date] IN VALUES('Calendar'[Date])))
RETURN
DIVIDE(_previous + _current, 1000)
Result:
Best Regards,
Yulia Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @RT6
Thanks for the reply from @Dangar332 , please allow me to provide another insight:
My sample:
Create a measure as follows
comparison =
VAR _previous = CALCULATE(SUM(Market[Sales]), FILTER(Market, [Date] IN SAMEPERIODLASTYEAR('Calendar'[Date])))
VAR _current = CALCULATE(SUM(Market[Sales]), FILTER(ALL(Market), [Date] IN VALUES('Calendar'[Date])))
RETURN
DIVIDE(_previous + _current, 1000)
Result:
Best Regards,
Yulia Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hi Yulia,
thanks for your response! SAMEPERIODLASTYEAR worked well in this case 🙂
Hi, @RT6
you have slicer in month form and you want sum of month wise then use DATESYTD()
use DATESYTD instead of DATESMTD
User | Count |
---|---|
15 | |
10 | |
9 | |
9 | |
8 |