Lookup Over Multiple Sheets

alexanders

New Member
Joined
Jan 29, 2014
Messages
29
Office Version
  1. 365
Platform
  1. Windows
Hello :) I have several sheets like this:
CIP Workbook 2022.xlsx
ABCDEFGHI
103/01/2022
2Week 1
3Plant ItemFrequencyDate of Last EventDays Since EventDays Until Action Req'dClean TypeNameDate
4overduePasteuriser Sample Tap MembraneWeekly01/11/20212013 days overdue!Hot CausticAB01/11/2021
5 Post passi Media Sample (sterile sample)Weekly17/11/202143Cold CausticAC17/11/2021
6 Soak bathsWeekly18/11/202134Hot RinseAA18/11/2021
7 Pasteuriser strainersWeekly19/11/202125Cold RinseAC19/11/2021
8overdueJuice Buffer TankWeekly01/11/20212013 days overdue!Hot CausticAA01/11/2021
9 Media Blender and Passi Main (New)Weekly17/11/202143Hot CausticAC17/11/2021
10 Media Blender and Passi Main (Old)Weekly18/11/202134Cold CausticAA18/11/2021
11 FFRT Lees MainWeekly19/11/202125Hot RinseAC19/11/2021
12overdueTransfer Main 1AWeekly01/11/20212013 days overdue!Cold RinseAA01/11/2021
13 Transfer Main 2AWeekly16/11/202152Hot CausticAC16/11/2021
14 Transfer Main 1BWeekly17/11/202143Hot CausticAA17/11/2021
Sheet2
Cell Formulas
RangeFormula
D4:D14D4=IF(MAX(G4:FF4)=0/1/1900,"NOT DONE",MAX(G4:FF4))
E4:E14E4=IF(MAX(G4:FF4)=0/1/1900,"",(TODAY()-MAX(G4:I4)))
F4:F14F4=IF(E4="","",IF(E4<=7,7-E4,IF(AND(E4>7,E4<=14),"Action within "&14-E4&" days",IF(E4>14,E4-7&" days overdue!"))))
A4:A14A4=IFERROR(IF(SEARCH("overdue",F4),"overdue"),"")
Cells with Data Validation
CellAllowCriteria
G4:G25List=Data!$A$2:$A$14
H4:H25List=Data!$B$2:$B$35
I4:I25Custom=I4=TODAY()


And I would like a status sheet able to automatically locate the overdue items and display them something like this:
CIP Workbook 2022.xlsx
ABCDE
1Overdue Cleans Status Report
2Plant ItemFrequencyDate of Last EventDays since last eventDays until next action required
3Pasteuriser Sample Tap MembraneWeekly01/11/20212013 days overdue!
4Juice Buffer TankWeekly01/11/20212013 days overdue!
5Transfer Main 1AWeekly01/11/20212013 days overdue!
6
7
Status


But whenever I try it picks up the first overdue item but then just repeats it over and over :(

Is there a way to lookup over multiple sheets and display the items which are overdue please?
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Well I have looked at this for some time but have no satisfaction ?‍? I have this formula which works good, but for just one sheet

{=IFERROR(INDEX(Sheet2!$B$2:$B$9,SMALL(IF($C$26=Sheet2!$A$2:$A$9,ROW(Sheet2!$A$2:$A$9)- MIN(ROW(Sheet2!$A$2:$A$9))+1,""), ROW()-2)),"")}

And I have this formula which works for multiple sheets but only if search term is different
{=VLOOKUP($C26,INDIRECT("'"&INDEX(lookup,MATCH(1,--(COUNTIF(INDIRECT("'"&lookup&"'!$A$1:$c$40"),$C26)>0),0))&"'!$A$1:$c$40"),2,FALSE)}

Can you just tell me if it's possible to have a formula like this first one that searches over multiple sheets please?
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,199
Members
449,072
Latest member
DW Draft

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