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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Anonymous
Not applicable

Query - Find max date for each customer, if null take last previous transaction date, by month year

Hi,

 

I have a table with transaction dates for each customer.

Then I have date table with dates, months, years.

 

I want to have a new table that will show for each customer his last transaction date per month/year.

If transaction date is missing in one month&year then take previous transaction date.

 

Example

SurferMike_0-1597158549312.png

Result

SurferMike_1-1597158842734.png

Thank you!

Mike

1 ACCEPTED SOLUTION
Daviejoe
Memorable Member
Memorable Member

Hi @Anonymous 

 

I've had a similar situation, the below helped me solve it.  I think the blank date would get resolved by this also.

 

https://community.powerbi.com/t5/Desktop/Consuming-only-updated-records-in-Power-query/m-p/726938/hi...





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @Anonymous ,

 

Check the measure below.

Measure = CALCULATE(MAX('Table'[date]),FILTER(ALLEXCEPT('Table','Table'[customer]),MONTH('Table'[date])<=SELECTEDVALUE('CALENDAR'[month])&&YEAR('Table'[date])=SELECTEDVALUE('CALENDAR'[year])))

1.PNG 

 

Best Regards,

Jay

amitchandak
Super User
Super User

@Anonymous , Try with a date table. Month year should be there in month year table

 

Max till year

YTD = CALCULATE(MAX(Table[Transaction Date]),DATESYTD('Date'[Date],"12/31"))

 

max across year


Cumm = CALCULATE(MAX(Table[Transaction Date]),filter(date,date[date] <=maxx(date,date[date])))

 

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-Y...


Appreciate your Kudos.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Daviejoe
Memorable Member
Memorable Member

Hi @Anonymous 

 

I've had a similar situation, the below helped me solve it.  I think the blank date would get resolved by this also.

 

https://community.powerbi.com/t5/Desktop/Consuming-only-updated-records-in-Power-query/m-p/726938/hi...





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.