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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

Need help getting last value for each month to show as trend graph

Hello everyone,


I am trying to make a trend graph to show the last value for each month to help our team analyze if there performance is getting better or worse.

 

All I can see is Min or Max which is not useful for me in this case.

 

Please see the image for reference. I am showing day-by-day breakdown for month of October where the count ends at 57 which is neither min nor max. Similarly for "Under Tech. Procurement" and other status

 

Capture.JPG

 

So the end result should be a trend like this:

 

Under Review:
End of October: 57

End of November: 45

End of December: 68

(Similarly more lines for other sub-metric as shown in the image above)

 

If the month has not ended, it should give the result with today's date.

 

Please find below the link to the PBIX file

 

https://www.dropbox.com/s/78ytuf57ysc4krz/Need%20Help.pbix?dl=0

 

Is there any way this can be done using a measure or column?

Really appreciate anyone who can help me with this!

 

 

 

1 ACCEPTED SOLUTION
v-yulgu-msft
Employee
Employee

Hi @Anonymous,

 

It looks like the last value per month should be:

1.PNG

 

If that is the case, you can refer to below measure:

lastvalue =
VAR lastdatepermonth =
    ENDOFMONTH ( 'Demands Project (2)'[Attribute] )
RETURN
    CALCULATE (
        MAX ( 'Demands Project (2)'[Value] ),
        FILTER (
            ALLSELECTED ( 'Demands Project (2)' ),
            'Demands Project (2)'[Attribute] = lastdatepermonth
        )
    )

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
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

3 REPLIES 3
Musto
Regular Visitor

Hi Everyone,

My probleme is close I Need help getting last value for each month not NULL (if last value is 0 should take the previous if not null to) many thanks 

Best Regards

v-yulgu-msft
Employee
Employee

Hi @Anonymous,

 

It looks like the last value per month should be:

1.PNG

 

If that is the case, you can refer to below measure:

lastvalue =
VAR lastdatepermonth =
    ENDOFMONTH ( 'Demands Project (2)'[Attribute] )
RETURN
    CALCULATE (
        MAX ( 'Demands Project (2)'[Value] ),
        FILTER (
            ALLSELECTED ( 'Demands Project (2)' ),
            'Demands Project (2)'[Attribute] = lastdatepermonth
        )
    )

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Greg_Deckler
Super User
Super User

You can use EOMONTH like below to get the last date of the month. You could combine this with a check to see if it is past today's date and adjust accordingly.

 

Column = EOMONTH([Date],0)


Measure = EOMONTH(MAX([Date]),0)

Once you have the End of Month date, then it should be relatively easy to find the value at that date.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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