I would like to use a dependent dropdown with a named range name based on the cell value on the first column of each row or beside it. This column is a dependent dropdown as well with a defined name range somewhere in the sheet.
Something like these tutorials but they only apply on one row.
https://productivityspot.com/dependent-drop-list-google-sheets/#comment-1609
https://www.excel-easy.com/examples/dependent-drop-down-lists.html
https://www.excel-easy.com/examples/excel-files/dependent-drop-down-lists.xlsx
It would be nice if it would work on both excel and google sheets.
Screenshot example with Column C is the first dropdown and D will get the named range value.
I found this formula below which generates the list on another area in the sheet, but only applies on the first row A2..
=ARRAYFORMULA(INDIRECT(A2))
should be applicable with A2,A3 and so on.
=ARRAYFORMULA(INDIRECT(A2:A))- Shiva