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
Anonymous
Not applicable

Extreact Last value of each month

 

hi, i want to extract Balance at last trasection date of each month, i have added index column but steill cant find out the formula

need your help

 

Untitled.png

 

4 REPLIES 4
Greg_Deckler
Super User
Super User

@Anonymous - I like @DataZoe , there is also Lookup Min/Max that I wrote. https://community.powerbi.com/t5/Quick-Measures-Gallery/Lookup-Min-Max/m-p/985814#M434


@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...
amitchandak
Super User
Super User

@Anonymous , Try closingbalancemonth

closingbalancemonth(Sum(Table[Month wise outstanding]), Table[Date])

prefer to use with date table

closingbalancemonth(Sum(Table[Month wise outstanding]), Date[Date])

 

refer video: how to use https://youtu.be/yPQ9UV37LOU

 

To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/

See if my webinar on Time Intelligence can help: https://community.powerbi.com/t5/Webinars-and-Video-Gallery/PowerBI-Time-Intelligence-Calendar-WTD-YTD-LYTD-Week-Over-Week/m-p/1051626#M184


Appreciate your Kudos.

@Anonymous , new flag column

 

if([Transaction Date] =eomonth([Transaction Date] ,0),1,0)

DataZoe
Employee
Employee

@Anonymous https://docs.microsoft.com/en-us/dax/lastnonblankvalue-function-dax

 

 

Month End =
LASTNONBLANKVALUE (
    Table[Transaction Date],
    SUM ( Table[Month Wise Outstanding] )
)

 

Edit: I forgot to add, you would use this with say a table, and by month.

 

Respectfully,
Zoe Douglas (DataZoe)



Follow me on LinkedIn at https://www.linkedin.com/in/zoedouglas-data
See my reports and blog at https://www.datazoepowerbi.com/

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.