Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be 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

Reply
AdityaPowerBI
Helper II
Helper II

Finding last completed month latest non blank value

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.

Last Month End =
SWITCH (
[Last Month End Day],
1, ( EOMONTH ( TODAY (), -1 ) - 2 ),
7, ( EOMONTH ( TODAY (), -1 ) - 1 ),
( EOMONTH ( TODAY (), -1 ) )
)

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 May100
28th May200
31st MayBLANK(because of holiday)
1 ACCEPTED SOLUTION
v-stephen-msft
Community Support
Community Support

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 ) )

Screenshot 2021-06-04 171024.png

 

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.

 

View solution in original post

2 REPLIES 2
v-stephen-msft
Community Support
Community Support

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 ) )

Screenshot 2021-06-04 171024.png

 

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.

 

amitchandak
Super User
Super User

@AdityaPowerBI ,  Try a measure like

 

maxx(filter(Table, not(isblank(Table[Data])) && eomonth(Table[date],0) = eomonth(today(),-1)),Table[Date])

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.