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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors