Is there a way to use a VLOOKUP formula that looks at two criteria to return avalue?
I have data from a Microsoft Form in a row from A:O which includes a name, month and a series of scores. From a dashboard page on another sheet, I can select my name from a dropdown and use a VLOOKUP to query the table and return certain values from columns I:O. The formula runs on another six lines each looking at a different Column on Sheet 1. This works as expected using the formula below (cell B4 is my name)
The issue comes that next month a new line of data is created that has my name, a different month and a different set of scores. I need to display the values from this month on the dashboard. Ideally, I select my name from cell B4 and text from cell B5 “May 2024” and have it display the data from the columns of the row that matches it.
The dashboard will have two sections both showing the same data but with different periods shown, top section May 2024, lower section June 2024.
Is this possible with a VLOOKUP?
Cheers
I have data from a Microsoft Form in a row from A:O which includes a name, month and a series of scores. From a dashboard page on another sheet, I can select my name from a dropdown and use a VLOOKUP to query the table and return certain values from columns I:O. The formula runs on another six lines each looking at a different Column on Sheet 1. This works as expected using the formula below (cell B4 is my name)
Excel Formula:
=IFNA(VLOOKUP(B4,Sheet1!A:O,9,FALSE),"Not Found")
The issue comes that next month a new line of data is created that has my name, a different month and a different set of scores. I need to display the values from this month on the dashboard. Ideally, I select my name from cell B4 and text from cell B5 “May 2024” and have it display the data from the columns of the row that matches it.
The dashboard will have two sections both showing the same data but with different periods shown, top section May 2024, lower section June 2024.
Is this possible with a VLOOKUP?
Cheers