Avatar of RobJanine
RobJanine

asked on 

LOOK UP DATA BASED ON ID NO. CHOSEN (again)

Hi again experts.

This is in relation to my last question but it now has to retrieve the data based on the Employee ID number chosen.

I have attached an example workbook, the times in RED are what I need to retrieve from sheet "FP Reader" based on the Empoyee no. chosen, and then the times put in the aproprate day, IN or OUT times.

Can you please help...I have been trying for ages to make this work.

May Thanks


Rob
Book-DATA-LOOKUP.xlsx
Microsoft Excel

Avatar of undefined
Last Comment
RobJanine
Avatar of RobJanine
RobJanine

ASKER

sorry, I deleted the last question as I put the wrong zone in.
Here we go with the correct zone now.

Cheers
Rob
Avatar of dlmille
dlmille
Flag of United States of America image

Ok, here's a solution - pasted in cell C5, then copied down, and copied across to columns F, I and L

=SUMPRODUCT(('FP Reader'!$H$5:$H$21)*('FP Reader'!$B$5:$B$21=C$4)*('FP Reader'!$J$5:$J$21=$B5)*(TEXT('FP Reader'!$C$5:$C$21,"M/D/YYYY")=IF($B5="OUT",TEXT($A5,"M/D/YYYY"),TEXT($A6,"M/D/YYYY"))))

One of the side-effects of this formula and your formatting is the result of zero value.  Zero means no match, but formatted as you have it would return 12:00:00 AM. So, we enhance the formula to check for zero value, and we're done!

=IF(SUMPRODUCT(('FP Reader'!$H$5:$H$21)*('FP Reader'!$B$5:$B$21=C$4)*('FP Reader'!$J$5:$J$21=$B5)*(TEXT('FP Reader'!$C$5:$C$21,"M/D/YYYY")=IF($B5="OUT",TEXT($A5,"M/D/YYYY"),TEXT($A6,"M/D/YYYY"))))=0,"",SUMPRODUCT(('FP Reader'!$H$5:$H$21)*('FP Reader'!$B$5:$B$21=C$4)*('FP Reader'!$J$5:$J$21=$B5)*(TEXT('FP Reader'!$C$5:$C$21,"M/D/YYYY")=IF($B5="OUT",TEXT($A5,"M/D/YYYY"),TEXT($A6,"M/D/YYYY")))))

The formula might be cleaned up a bit, if we were working with the same datatype across all the dates, but for "simplicity", I convert all to text e.g., TEXT(A5,"M/D/YYYY") so all are compared on the same basis.

Let's break the basic formula down:

=SUMPRODUCT(('FP Reader'!$H$5:$H$21)*('FP Reader'!$B$5:$B$21=C$4)*('FP Reader'!$J$5:$J$21=$B5)*(TEXT('FP Reader'!$C$5:$C$21,"M/D/YYYY")=IF($B5="OUT",TEXT($A5,"M/D/YYYY"),TEXT($A6,"M/D/YYYY"))))

('FP Reader'!$H$5:$H$21) - is the time that we want as the result
('FP Reader'!$B$5:$B$21=C$4) - checks the employee ID number
('FP Reader'!$J$5:$J$21=$B5) - checks for match on IN or OUT
TEXT('FP Reader'!$C$5:$C$21,"M/D/YYYY")  - sets up the date check, and
IF($B5="OUT",TEXT($A5,"M/D/YYYY"),TEXT($A6,"M/D/YYYY")) - compares that date to the correct row - the one having "OUT" in it, as it holds the date in column A

See attached demo workbook:

Dave


Book-DATA-LOOKUP-r1.xlsx
Avatar of RobJanine
RobJanine

ASKER

Thanks,  only thing is I need to allow for alot more potinual data. eg.I need to look at all of column H from H5 downwards.
I tryed changing it but the formula read #N/A

any suggestions??
Avatar of dlmille
dlmille
Flag of United States of America image

I just had to coerce a null value (due to your if statement on FP Reader, re: time clocked in/out) to a zero in the null scenario.

How about 1000 rows?

See attached.

Dave
Book-DATA-LOOKUP-r1.xlsx
Avatar of RobJanine
RobJanine

ASKER

Sorry formula puts #VALUE! if it looks at rows with no data
Avatar of dlmille
dlmille
Flag of United States of America image

Would you like to look at what I posted?

Dave
Avatar of dlmille
dlmille
Flag of United States of America image

Just to be clear, I corrected the issue you teed up with #VALUE.  I concatenated the H5:H1000 parameter with 0, thus:

SUMPRODUCT(('FP Reader'!$H$5:$H$1000&0) which eliminates the error in the SUMPRODUCT when you introduce the NULL value in the FP Reader sheet.

As a result, your formulas should now be clean, and they are set for 1000 rows.  Feel free to increase the number of rows, as needed.

Please advise if you have any additional issues.

See attached,

Dave
Book-DATA-LOOKUP-r2.xlsx
Avatar of RobJanine
RobJanine

ASKER

Thanks for your help...your formula worked, but is to slow. When i import the data into 'FP Reader' the formulas are tryng to run and slows the import and sorting of inital data. Is there a way of runing this with code, say on a button or something, or do you have any other suggestions?

Rob.
Avatar of barry houdini
barry houdini
Flag of United Kingdom of Great Britain and Northern Ireland image

Not for points....

Rather than repeat the formula to eliminate 12:00:00 AM one option is to custom format result cell, i.e.

hh:mm:ss AM/PM;;

note semi-colons

regards, barry
Avatar of J79123
J79123
Flag of United States of America image

It looks like you're using 2007 or 2010, so you can use tables, which makes the formulas a bit easier to follow. So I put your timesheet data list into a 'table' so that the ranges can be referenced with names and not ranges. This can be a big help if you just want to add data to that table. but it also makes the formulas easy to understand, so that you can change them once you see how things work

Next on your calendar page where you want the data to sum:
 the lines that say the day of the week *next to 'IN' were hardcoded as text value days. But if you change those cells to the date you want to lookup (the date listed in cell below it)' then you can use that 'day name' cell as your match value. Then you don't need to make your formula any longer than necessary. you only need to change the cell format to DDDD to show the name of the day.

next when trying to match the punch in/out times to the day that's being reported, all you need to do here is match the integer value of someone's punch in time to the report date that you are looking up.
for example the excel true number value of 8/31/11 5:10am 40786.22. and the date you want to lookup might be 8/31/11 (excel value 40786). So the int function is probably quickest way to get to the day information in a date/time value.

another format trick... if there are no matches the time will sum to zero, which with time formatting looks like 12:00. but cell formatting lets you specify how you want positive, negative and zero values to look. so I changed the cell format to show a time format for positive numbers and a null value for zero values. (right click and select cell formatting to see how that works) No formula necessary to clean up the non-matches (zeros)

Finally sumproducts are used in the formulas because they let you sum with multiple criteria and let you manipulate the data you are looking up (like the int function part) but this means that each formula is a mini array. Not sure how big your data is.. but it could get slow if it gets huge.
And this also means that if you need to change these formulas, instead of typing enter after making changes, you need to hit control+shift+enter. you will know you did it right if brackets appear around the formula in the formula bar.
 Book-DATA-LOOKUP-with-sumprods.xlsx
SOLUTION
Avatar of Rory Archibald
Rory Archibald
Flag of United Kingdom of Great Britain and Northern Ireland image

Blurred text
THIS SOLUTION IS ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
Avatar of Rory Archibald
Rory Archibald
Flag of United Kingdom of Great Britain and Northern Ireland image

@J79123,
Your SUMPRODUCTS do not need array-entering, BTW.

Regards,
Rory
Avatar of Rory Archibald
Rory Archibald
Flag of United Kingdom of Great Britain and Northern Ireland image

@dlmille,
FYI, in this instance rather than using &0 in your SP formula, you can just replace the * with a comma and text and empty cells will be ignored:

=SUMPRODUCT('FP Reader'!$H$5:$H$21,('FP Reader'!$B$5:$B$21=C$4)*('FP Reader'!$J$5:$J$21=$B5)*(TEXT('FP Reader'!$C$5:$C$21,"M/D/YYYY")=IF($B5="OUT",TEXT($A5,"M/D/YYYY"),TEXT($A6,"M/D/YYYY"))))

rather than:

=SUMPRODUCT(('FP Reader'!$H$5:$H$21&0)*('FP Reader'!$B$5:$B$21=C$4)*('FP Reader'!$J$5:$J$21=$B5)*(TEXT('FP Reader'!$C$5:$C$21,"M/D/YYYY")=IF($B5="OUT",TEXT($A5,"M/D/YYYY"),TEXT($A6,"M/D/YYYY"))))
Avatar of dlmille
dlmille
Flag of United States of America image

Thanks, rory, that's a good tip.

Dave
Avatar of dlmille
dlmille
Flag of United States of America image

@RobJanine - Please try this solution, incorporating input from barryhoudini and rorya.  Let's see if this is fast enough.  Otherwise, I can look into a macro to update the data.

Dave
Book-DATA-LOOKUP-r3.xlsx
ASKER CERTIFIED SOLUTION
Avatar of dlmille
dlmille
Flag of United States of America image

Blurred text
THIS SOLUTION IS ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
Avatar of RobJanine
RobJanine

ASKER

Thankyou all so much for all your work.

rob.
Microsoft Excel
Microsoft Excel

Microsoft Excel topics include formulas, formatting, VBA macros and user-defined functions, and everything else related to the spreadsheet user interface, including error messages.

144K
Questions
--
Followers
--
Top Experts
Get a personalized solution from industry experts
Ask the experts
Read over 600 more reviews

TRUSTED BY

IBM logoIntel logoMicrosoft logoUbisoft logoSAP logo
Qualcomm logoCitrix Systems logoWorkday logoErnst & Young logo
High performer badgeUsers love us badge
LinkedIn logoFacebook logoX logoInstagram logoTikTok logoYouTube logo