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
bjomol
New Member

Lookup a value in two dimensions

 
1 ACCEPTED SOLUTION

Hi @bjomol ,

 

Add a calculated column as below.

Cluster =
CALCULATE (
    MAX ( Sheet6[Cluster] ),
    FILTER (
        Sheet6,
        Sheet6[Country] = EARLIER ( Sheet7[Country] )
            && Sheet6[cars min] <= EARLIER ( Sheet7[Cars] )
            && Sheet6[cars max] >= EARLIER ( Sheet7[Cars] )
            && Sheet6[meters min] <= EARLIER ( Sheet7[Meters] )
            && Sheet6[meters max] >= EARLIER ( Sheet7[Meters] )
    )
)

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yulgu-msft
Employee
Employee

Hi @bjomol ,

 

Please provide sample data and show us desired output to make your requirement more clear.

How to Get Your Question Answered Quickly

 

Regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Example.PNG

Hi! 

I would like some help to make the following lookup in Power BI or Excel if needed.

The yellow cluster cells looks first for the country, then if cars and meters are in the two min/max intervals it returns the matching Cluster. The Clusters can be similar in car interval for example but different in meters.

 

Best regards, Björn

Hi @bjomol ,

 

Add a calculated column as below.

Cluster =
CALCULATE (
    MAX ( Sheet6[Cluster] ),
    FILTER (
        Sheet6,
        Sheet6[Country] = EARLIER ( Sheet7[Country] )
            && Sheet6[cars min] <= EARLIER ( Sheet7[Cars] )
            && Sheet6[cars max] >= EARLIER ( Sheet7[Cars] )
            && Sheet6[meters min] <= EARLIER ( Sheet7[Meters] )
            && Sheet6[meters max] >= EARLIER ( Sheet7[Meters] )
    )
)

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.