still trying to get excel to return name when a number...

Johnny Fix

New Member
Joined
Aug 23, 2011
Messages
4
Hi still trying to get excel to give me a name when a number that falls within a range of numbers on another sheet appears.

Esentially what i have is drivers who use a series of invoices, NOT NECESSARILY IN SEQUENTIAL ORDER - 12 drivers with each ahving 3 to 5 batches of invoices... trying to tie invoice number to driver names wihout going to driver logs, etc...

Ibuilt one sheet labled INVOICE TRACKING, 3 columns, A) lowest invoice # B) highest invoice number C) Name

Would like to be able to input invoicenumber in another sheet and have excel tell me who held that invoice...


Can anyone help?
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Hi still trying to get excel to give me a name when a number that falls within a range of numbers on another sheet appears.

Esentially what i have is drivers who use a series of invoices, NOT NECESSARILY IN SEQUENTIAL ORDER - 12 drivers with each ahving 3 to 5 batches of invoices... trying to tie invoice number to driver names wihout going to driver logs, etc...

Ibuilt one sheet labled INVOICE TRACKING, 3 columns, A) lowest invoice # B) highest invoice number C) Name

Would like to be able to input invoicenumber in another sheet and have excel tell me who held that invoice...


Can anyone help?
Control+shift+enter, not just enter:
Code:
=INDEX('INVOICE TRACKING'!$C$2:$C$100,
   MATCH(1,IF(A2>='INVOICE TRACKING'!$A$2:$A$100,
    IF(A2<='INVOICE TRACKING'!$B$2:$B$100,1)),0))
where A2 houses an invoice number of interest.
 
Upvote 0

Forum statistics

Threads
1,224,518
Messages
6,179,254
Members
452,900
Latest member
LisaGo

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