March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi All,
I am working on a report where I need to fetch last value of previous month based on calendar. If current month is June it should fetch May's last value. Currently I am using this calculation. Based on the day of the last date I fetch the last working date. Since the working days are Monday to Friday. If the last date is Sunday or Saturday I fetch last friday else the last working day.
Value LM =
CALCULATE (
SUM ( Amount),
FILTER (
'Table',
'Table'[Date] = [Last Month End]
)
)
But the issue with this logic is if last working day(between Monday - Friday) is a holiday then it gives blank values. Is there a way I can fetch the last non blank value. Based on the below data if current month is June I want output as 200.
May Data | |
27th May | 100 |
28th May | 200 |
31st May | BLANK(because of holiday) |
Solved! Go to Solution.
Hi @AdityaPowerBI ,
Try this measure
Last Month End =
VAR _date =
CALCULATE (
MAX ( 'Table'[Date] ),
FILTER (
ALL ( 'Table' ),
[Value] <> BLANK ()
&& [Date] <= EOMONTH ( TODAY (), -1 )
)
)
RETURN
CALCULATE ( SUM ( 'Table'[Value] ), FILTER ( 'Table', [Date] = _date ) )
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @AdityaPowerBI ,
Try this measure
Last Month End =
VAR _date =
CALCULATE (
MAX ( 'Table'[Date] ),
FILTER (
ALL ( 'Table' ),
[Value] <> BLANK ()
&& [Date] <= EOMONTH ( TODAY (), -1 )
)
)
RETURN
CALCULATE ( SUM ( 'Table'[Value] ), FILTER ( 'Table', [Date] = _date ) )
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@AdityaPowerBI , Try a measure like
maxx(filter(Table, not(isblank(Table[Data])) && eomonth(Table[date],0) = eomonth(today(),-1)),Table[Date])
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
91 | |
88 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
73 | |
68 |