if I could use XLOOKUP it would simplify my formulas, but it doesn't seem to offer a way to return a relative column reference like VLOOKUP. For example, with VLOOKUP I had:
=VLOOKUP(I21,INDIRECT($Q$9),4,FALSE)
- I21: Text to search for
- INDIRECT($Q$9): Cell containing the named range (I have several tables of data, the user can select which table with a drop-down)
- 4: Relative number of columns over from the searched text in the selected table
XLOOKUP bills itself as being able to totally replace VLOOKUP, but I don't see how ask it for a relative reference which is the default behavior for VLOOKUP.
Hopefully this example is clear, let me know if not.