I have a lookup sheet where I am trying to pull data based on date. Some of the data in the sheet will be weekly and some daily. So my "Lookup sheet" has daily dates in the Date column.
What I'd like to do for the weekly data is say, if the date@row is not an EXACT match, return a 0 or a blank.
My similar formula works beautifully for the daily dates, but for the weekly dates, it's still pulling data on weeks that don't match.
For reference, I've attached a photo of my sheet. The white columns are daily numbers, this works well (please ignore the NO MATCH, I will correct that). The 2 columns in blue are weekly numbers and should only have numbers for the rows highlighted in yellow. All the other rows for the blue columns should be blank or have a "0".
Below is my formula for the blue columns - data is pulled from 2 separate sheets. I should say that I have also tried this with separate IFERROR statements (for both sheets) and the result was the same.
=IFERROR(INDEX({C-Completed Weekly Tasks}, MATCH(Date@row, {Date Weekly 1})) + INDEX({T-Weekly Completed Tasks}, MATCH(Date@row, {Weekly Date})), "0")
Here is the sheet. Is it possible to do what I want?