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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
ericOnline
Post Patron
Post Patron

Using MEDIAN as LOOKUP column?

Hello,

I want to LookUp records based on the record closest to the Median value of a column. 

Example:

 

 

MAP_ZOOM_LAT = 

VAR varMid = MEDIAN(table[column1])
RETURN

    LOOKUPVALUE(
        table[latitude], 
        varMid,
        BLANK()
    )

 

 

 The error I receive is:

"Function LOOKUPVALUE expects a column reference as argument number 2"

ericOnline_0-1600364016127.png

 

How do I determine which record is closest to the Median value in a given column?

Thank you

1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

@ericOnline Maybe this:

MAP_ZOOM_LAT = 
  VAR __varMid = MEDIAN(table[column1])
  VAR __Table = 
    ADDCOLUMNS(
      'table',
      "diff",ABS([latitude]-__varMid)
    )
  VAR __Min = MINX(__Table,[diff])
  VAR __Result = MINX(FILTER(__Table,[diff]=__Min),[ID])
RETURN
  [ID]

That's the general idea, basically a Lookup Min/Max - https://community.powerbi.com/t5/Quick-Measures-Gallery/Lookup-Min-Max/m-p/985814#M434

 

Not 100% of what you are trying to return/show so I just made up an "ID" column. You could use a variation of this as a flag variable that you could use as a Complex Selector - https://community.powerbi.com/t5/Quick-Measures-Gallery/The-Complex-Selector/m-p/1116633#M534

MAP_ZOOM_LAT = 
  VAR __CurrentLat = MAX(table[latitude])
  VAR __varMid = MEDIAN(table[column1])
  VAR __Table = 
    ADDCOLUMNS(
      'table',
      "diff",ABS([latitude]-__varMid)
    )
  VAR __Min = MINX(__Table,[diff])
  VAR __Result = IF(__CurrentLat = __Min, 1, 0)
RETURN
  __Result

 

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @ericOnline ,

 

Has the problem be solved? 

 

Best Regards,

Jay

Greg_Deckler
Community Champion
Community Champion

@ericOnline Maybe this:

MAP_ZOOM_LAT = 
  VAR __varMid = MEDIAN(table[column1])
  VAR __Table = 
    ADDCOLUMNS(
      'table',
      "diff",ABS([latitude]-__varMid)
    )
  VAR __Min = MINX(__Table,[diff])
  VAR __Result = MINX(FILTER(__Table,[diff]=__Min),[ID])
RETURN
  [ID]

That's the general idea, basically a Lookup Min/Max - https://community.powerbi.com/t5/Quick-Measures-Gallery/Lookup-Min-Max/m-p/985814#M434

 

Not 100% of what you are trying to return/show so I just made up an "ID" column. You could use a variation of this as a flag variable that you could use as a Complex Selector - https://community.powerbi.com/t5/Quick-Measures-Gallery/The-Complex-Selector/m-p/1116633#M534

MAP_ZOOM_LAT = 
  VAR __CurrentLat = MAX(table[latitude])
  VAR __varMid = MEDIAN(table[column1])
  VAR __Table = 
    ADDCOLUMNS(
      'table',
      "diff",ABS([latitude]-__varMid)
    )
  VAR __Min = MINX(__Table,[diff])
  VAR __Result = IF(__CurrentLat = __Min, 1, 0)
RETURN
  __Result

 

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

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.