I am utilizing multiple worksheets (one for each year) but have one sheet that has some consolidated information, and I would like for it to be able to pull from the appropriate year sheet.
=IFERROR(INDEX(COLLECT({Quote Log 2024 Quote Status}, {Quote Log 2024 Quote #}, @cell = [Quote Number]@row), 1), "")
I would like for the formula to pull from the 2023 quote log to return a quote status as well as the 2024 quote log. This formula will need to have the functionality to soon add 2025 to that search requirement too.
I've tried this too, there is no error message, but it is not returning anything.
=IFERROR(INDEX({Quote Log 2024 Quote #}, {Quote Log 2024 Quote Status}, @cell = [Quote Number]@row), IFERROR(INDEX({Quote Log 2023 Quote #}, {Quote Log 2023 Quote Status}, @cell = [Quote Number]@row), ""))
Any help is greatly appreciated!