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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Annemie19
Helper II
Helper II

Select Next date in column

Hi There, 

 

I want to create a measure which gives the next date in the column for the entityID in that row. For instance, in the table below, I want a new column which, let's say entity ID 92 the date is 29/06/2021 then it needs to give the date 29/09/2021. 

 

Annemie19_0-1598955602924.png

 

1 ACCEPTED SOLUTION
AntrikshSharma
Super User
Super User

@Annemie19  You can use this:

 

Column = 
VAR CurrentRowEntity = Anne[EntityID]
VAR CurrentRowDate = Anne[MeasurementDate]
VAR SameRows =
    FILTER (
        Anne,
        Anne[EntityID] = CurrentRowEntity
            && Anne[MeasurementDate] > CurrentRowDate
    )
VAR Result =
    MINX ( SameRows, Anne[MeasurementDate] )
RETURN
    IF ( Result = BLANK (), CurrentRowDate, Result )

1.PNG

View solution in original post

2 REPLIES 2
AntrikshSharma
Super User
Super User

@Annemie19  You can use this:

 

Column = 
VAR CurrentRowEntity = Anne[EntityID]
VAR CurrentRowDate = Anne[MeasurementDate]
VAR SameRows =
    FILTER (
        Anne,
        Anne[EntityID] = CurrentRowEntity
            && Anne[MeasurementDate] > CurrentRowDate
    )
VAR Result =
    MINX ( SameRows, Anne[MeasurementDate] )
RETURN
    IF ( Result = BLANK (), CurrentRowDate, Result )

1.PNG

amitchandak
Super User
Super User

@Annemie19 , try a new column like

minx(filter(table, [entityID] = earlier([entityID]) && [measuredate] >earlier([measuredate])),[measuredate])

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

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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