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
antoniopgouveia
Frequent Visitor

Find next value by date

Hi all,

 

I have created an index for a table of opportunities which have an associated date for each entry. I have, then, concatenated the index with the dates (format: YYmmdd) to create my IndexDate column. I would like to find the next IndexDate within the same opportunity (index) and if there is no later entries for a certain opportunity I would like to fill in with the same IndexDate. My desired output is shown in column named NextIndexDate. Is there anyway to do this?

 

IndexDateIndexDateNextIndexDate
120/07/201811807201180730
130/07/201811807301180806
106/08/201811808061180807
107/08/201811808071180807
207/05/201821805072180620
220/06/201821806202180715
215/07/201821807152180715

 

Best regards,

Antonio

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@antoniopgouveia

 

Try with following

 

Column =
VAR temp =
    TOPN (
        1,
        FILTER ( Table1, [Index] = EARLIER ( [Index] ) && [Date] > EARLIER ( [Date] ) ),
        [Date], ASC
    )
VAR result =
    MINX ( temp, [IndexDate] )
RETURN
    IF ( ISBLANK ( result ), [IndexDate], result )

Regards
Zubair

Please try my custom visuals

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

@antoniopgouveia

 

Try with following

 

Column =
VAR temp =
    TOPN (
        1,
        FILTER ( Table1, [Index] = EARLIER ( [Index] ) && [Date] > EARLIER ( [Date] ) ),
        [Date], ASC
    )
VAR result =
    MINX ( temp, [IndexDate] )
RETURN
    IF ( ISBLANK ( result ), [IndexDate], result )

Regards
Zubair

Please try my custom visuals

Hi @Zubair_Muhammad,

 

Thanks for that, it worked perfectly! I just had the filter because it was messing with my index column in relation to original Opportunity ID. They weren't matching to same opportunity ID. As below:

 

NextIndexDate =
VAR temp =
    TOPN (
        1,
        FILTER ( Table1, [Index] = EARLIER ( [Index] ) && [Date] > EARLIER ( [Date] ) && [OpportunityID] = [OpportunityID]),
        [Date], ASC
    )
VAR result =
    MINX ( temp, [IndexDate] )
RETURN
    IF ( ISBLANK ( result ), [IndexDate], result )

 Best regards,

Antonio

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.