Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Team,
i have sales data in that how to find out Region 1 Region 2 wise and profit with 45 days.
It should be one measure it self we have to get it ?
how we can achieve on this.
Solved! Go to Solution.
Hi @MSMKM ,
I think you can try measure as below to achieve your goal.
Measure =
CALCULATE(SUM('Table'[Sales]),FILTER('Table','Table'[Date]>= TODAY() - 45))
My Sample:
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @MSMKM ,
I think you can try measure as below to achieve your goal.
Measure =
CALCULATE(SUM('Table'[Sales]),FILTER('Table','Table'[Date]>= TODAY() - 45))
My Sample:
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.