Hello
Lee,
Thanks for sharing the sample sheet. I can see that your TASK NAME list is in column D, and you want to select a task from a drop-down and show that selected item at the top of the sheet.
You can do this with a Data Validation drop-down + XLOOKUP.
Step 1: Create the Drop-Down
- Select a cell where you want the selector (for example B1).
- Go to Data → Data Validation → List.
- Set the Source to your task list, for example:
=D5
100
(Adjust the range to cover all tasks.)
Step 2: Return the Selected Task at the Top
In the cell where you want the selected task displayed (for example D2), use:
=XLOOKUP(B1,D
,D
)
This will display the selected TASK NAME from the list.
Optional: Return the Whole Row
If later you want to show Priority, Code, or other columns for the selected task, you can use the same approach, for example:
=XLOOKUP($B$1,$D:$D,$C:$C)
This returns the corresponding value from another column in the same row.
Tip: You may also want to convert the task list to an Excel Table (Ctrl + T) so the drop-down automatically expands when new tasks are added.