Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi All,
I need help with Calculating on Rolling period Basis. MAT means last 12 Month.
So I've to calculate Sales% basis Last 12 month for every month like
Jan'24 MAT (Feb23-Jan24)
Feb'24 MAT (Mar23-Feb'24)
Mar'24 MAT (Apr23-Mar24)
I've already created a measure Sales% = Sales/Total sales.
How to create MAT SALES% measure so whatever month is selected, it calculate basis last 12 month value.
Solved! Go to Solution.
Hi, @kalpesh07
Thanks for @bhanu_gautam reply. Here is the complementary method, which still primarily utilizes the time-intelligent function.
Measure:
%Sales =
VAR _dateEnd =
SELECTEDVALUE ( 'Table'[Date] )
VAR _dateEndDay =
DAY ( _dateEnd ) + 1
VAR _dateStart =
EOMONTH ( _dateEnd, -13 ) + _dateEndDay
VAR _monthStart =
EOMONTH ( _dateEnd, -2 ) + _dateEndDay
VAR _TotalSales =
CALCULATE (
SUM ( 'Table'[Sales] ),
'Table'[Date] >= _dateStart
&& 'Table'[Date] <= _dateEnd
)
VAR _MonthSales =
CALCULATE (
SUM ( 'Table'[Sales] ),
'Table'[Date] >= _monthStart
&& 'Table'[Date] <= _dateEnd
)
VAR _result =
DIVIDE ( _MonthSales, _TotalSales )
RETURN
_result
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Hi, @kalpesh07
Thanks for @bhanu_gautam reply. Here is the complementary method, which still primarily utilizes the time-intelligent function.
Measure:
%Sales =
VAR _dateEnd =
SELECTEDVALUE ( 'Table'[Date] )
VAR _dateEndDay =
DAY ( _dateEnd ) + 1
VAR _dateStart =
EOMONTH ( _dateEnd, -13 ) + _dateEndDay
VAR _monthStart =
EOMONTH ( _dateEnd, -2 ) + _dateEndDay
VAR _TotalSales =
CALCULATE (
SUM ( 'Table'[Sales] ),
'Table'[Date] >= _dateStart
&& 'Table'[Date] <= _dateEnd
)
VAR _MonthSales =
CALCULATE (
SUM ( 'Table'[Sales] ),
'Table'[Date] >= _monthStart
&& 'Table'[Date] <= _dateEnd
)
VAR _result =
DIVIDE ( _MonthSales, _TotalSales )
RETURN
_result
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
@kalpesh07 , You can achieve this by using DAX measures in Power BI
First make sure you have a date table in your model, if not than create one using
Proud to be a Super User! |
|
User | Count |
---|---|
12 | |
11 | |
8 | |
7 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |