Cross-Reference Function

ninive

New Member
Joined
Mar 9, 2009
Messages
2
I am trying to cross-reference the maximum value of column N (sales value for the month of March) with the correspondent name in column B (sales person). Basically I want the final result to be the name of the sales person who sold the most of that particular month.<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:eek:ffice:eek:ffice" /><o:p></o:p>
I am trying to mix the MAX & VLOOKUP, but I don’t seem to be doing it right. Can someone help with this?<o:p></o:p>
Thank you<o:p></o:p>
 
Last edited by a moderator:

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Hi and Welcome to the Board!!!

Use INDEX/MATCH
Code:
=INDEX($B$2:$B$10,MATCH(MAX($N$2:$N$10),$N$2:$N$10,0),1)

What do you want if there's a tie for MAX?
lenze
 
Upvote 0
ninive,

Welcome to the MrExcel board.

Excel Workbook
BCDEFGHIJKLMNOP
2A100D
3B200
4C300
5D1000
6E1
7F2
8G3
9H4
10I5
Sheet1




Have a great day,
Stan
 
Upvote 0
Thank you so much Lenze. The formula works beautifully. Now I never thought about in the case of tie because it never happened, but I guess iI would like to split with two names.
Do you have a formula for that?
Once again thank you for your help!
 
Upvote 0

Forum statistics

Threads
1,214,634
Messages
6,120,659
Members
448,975
Latest member
sweeberry

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top