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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
webportal
Impactful Individual
Impactful Individual

Get value of column searching in between dates

I need to get the field "Name" from "Table1" in a calculated column in "Table2", like:

Table1:

Name | Date
ABC  | 5-jan-2017
ABC  | 7-jan-2017
DEF  | 8-may-2018
DEF  | 10-jun-2018

And Table2:

Date         | CalcColumn
6-Jan-2017   | ABC
25-may-2018  | DEF

The logic is the following: If Date in Table2 is within the minimum and maximum dates of Table1then get the name in Table1.

1 ACCEPTED SOLUTION
AlB
Community Champion
Community Champion

Hi @webportal

That's weird. Have a look at this file where I've run a quick test with the sample data you provided. Maybe there's something different from what you are doing?  

View solution in original post

3 REPLIES 3
AlB
Community Champion
Community Champion

Hi @webportal

Try this for your calculated column in Table2:

 

NewColumn =
CONCATENATEX (
    FILTER (
        ALL ( Table1[Name] );
        CALCULATE ( MIN ( Table1[Date] ) ) <= Table2[Date]
            && CALCULATE ( MAX ( Table1[Date] ) ) >= Table2[Date]
    );
    Table1[Name];
    ", "
)

This will also work if there is more than one name in Table1 meeting the requirement. If so, all names will be shown separated by commas.

webportal
Impactful Individual
Impactful Individual

Hello @AlB

The expression makes sense, but I'm getting an empty column, have no idea why.

AlB
Community Champion
Community Champion

Hi @webportal

That's weird. Have a look at this file where I've run a quick test with the sample data you provided. Maybe there's something different from what you are doing?  

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors