Lookup a number, return a name

bobbybrown

Board Regular
Joined
Apr 17, 2015
Messages
121
Hi all,
I’m working on a simple sheet where I have a few columns. The important ones are:
A = first name
B = surname
F = points

On another sheet within the same workbook I am trying to get it to display any person who has 3 or more points.
I want it to display first name, surname and points if they have 3 or more points.
This sheet is a summary sheet if that makes sense.

I’ve tried with Vlookup but I just keep getting an error or a 0, so thought I should ask the experts for guidance.

Many thanks
 
Also I’ve noticed in occasions of sickness it’s copying the store number, where it should be either points in E or sickness in F. Doesn’t matter which as both are the same.
 
Upvote 0

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
B
C
D
2
Colleagues with 3 or more sickness within 6 months
3
4
First Name
Surname
Occasions of sickness
5
Name 4Surname 4
3​
6
Name 7Surname 7
3​
7
Name 11Surname 11
3​
8
9
10
11
12
13
14
15

<tbody>
</tbody>


b5=
IFERROR(INDEX('Sickness Tracker'!A$6:A$129,SMALL(IF('Sickness Tracker'!$F$6:$F$129>=3,ROW('Sickness Tracker'!A$6:A$129)-ROW('Sickness Tracker'!A$6)+1),ROWS('Sickness Tracker'!A$6:'Sickness Tracker'!A6))),"")

Control +shift +enter

copy across an down range b:c

D5=
IFERROR(INDEX('Sickness Tracker'!$F$6:$F$129,MATCH('Summary of 3 in 6'!B5&'Summary of 3 in 6'!C5,'Sickness Tracker'!$A$6:$A$129&'Sickness Tracker'!$B$6:$B$129,0)),"")

copy down



 
Upvote 0

Forum statistics

Threads
1,215,216
Messages
6,123,669
Members
449,114
Latest member
aides

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