Wasn't too sure how to word this, but here is the situation:
- A table ("Table1") with several columns; focus is on columns 1,2,4
- Column 4 contains a dropdown menu, which uses the list called "Steps", which is defined as G2:G6
- I need to find a given person's most/least progressed step (the "task" doesn't matter)
I know I can use
to find the details matching my team and name criteria (and filter out any duplicates), but is there a way to get specifically the value with the lowest index from the "Steps" list? I know INDEX(Steps,[index]) will return the corresponding item on the list, but is there a way to get the opposite info?
See below; the selected area shows what my expected outputs are for what I need.
- A table ("Table1") with several columns; focus is on columns 1,2,4
- Column 4 contains a dropdown menu, which uses the list called "Steps", which is defined as G2:G6
- I need to find a given person's most/least progressed step (the "task" doesn't matter)
I know I can use
VBA Code:
=UNIQUE(FILTER(Table1[Current Step],(Table1[Team]=G13)*(Table1[Name]=H13)))
See below; the selected area shows what my expected outputs are for what I need.