Hello,
I have two sheets that contain data from employee responses to different questions. Employees answer at least one question per day.
If an employee answers the question on sheet 1, I need that value, if they dont have a response on that sheet, I need to look and see if there is an answer is on a different sheet. I only want responses for 'Today'. I have a cell in the lookup sheet that has =Today() in a cell that I use as a reference.
I believe this can be done with an IF statement combined with a Vlookup (forgive the syntax)
If({Sheet 1 dateRange1} = Today@row, Vlookup Employee@row, {VlookupRange1}, 2,0), IF({Sheet 2 dateRange2} = Today@row, Vlookup Employee@row, {VlookupRange2},2,0, "missing")
If information does not exist for the person Today on sheet 1, I need to lookup another value on sheet 2. If information does not exist anywhere, I want to return "missing".
Hope that makes sense! Any direction is appreciated.