Hello,
I've been struggling to find the appropriate formula and AI hasn't helped either.
Here is some context as to what I'm trying to accomplish. In my "calculation worksheet" I have a table with Data Links setup. These all work as intended with no issues. The problem occurs because after an items has been marked completed, it will be removed from the "reference sheet" and put into an "archive sheet" as to not clutter things up.
This is when I run into an issue where I receive a #NO MATCH error because the reference from the "reference sheet" is no longer there but has been moved to the "archive sheet."
Is it possible to create a formula with an IFERROR that can reference both the "reference sheet" and the "archive sheet?" So if the #NO MATCH error appears it then differs to the "archive sheet." Here is what the correct formula that works. (when rows are not deleted)
=IF(NOT(ISBLANK([OI#]@row)), INDEX({connections_3025338826553}, MATCH([OI#]@row, {connections_3025338826537}, 0)))
This is what I have currently came up with for the =IFERROR trying to reference both sheets but it's giving me an #INVALID REF.
=IFERROR(IF(NOT(ISBLANK([OI#]@row)), INDEX({connections_3025338826550}, MATCH([OI#]@row, {connections_3025338826537}, 0))), (IF(NOT(ISBLANK([OI#]@row)), INDEX({connections_3025338826537}, MATCH([OI#]@row, {5944180383088516}, 0)))))
This is a picture of the issue I am running into.
This is the "reference sheet"
This is the "archive sheet"
Picture of working formula (minus the #NO MATCH)
Picture of my new formula (that isn't working)
Any assistance would be much appreciated.
Thank you,