Edit: 1) I use O365 2) Google Formula =ARRAYFORMULA((if(D3=Parameters!B12,Parameters!B13:B20,if(D3=Parameters!C12,Parameters!C13:C20,if(D3=Parameters!D12,Parameters!D13:D20,if(D3=Parameters!E12,Parameters!E13:E20,if(D3=Parameters!F12,Parameters!F13:F20)))))))
I was able to the the thing below in Google Sheets using Arrayformula and nested IFs, but how do I do it in Excel?
Say, A1 is a dropdown, and depending on what the user chooses for A1, I want A3 - A7 to automatically populate.
Examples
If A1=Cat, I want A3, A4, A5 to automatically populate with Tiger, Lion, and Lynx
If A1=K9, I want A3, A4, A5, A6, A7 to automatically populate with Wolf, Fox, Dog, Big Dog, and Good Boi
| A |
1 | Cat |
2 | |
3 | Tiger |
4 | Lion |
5 | Lynx |
6 | |
7 | |
| A |
1 | K9 |
2 | |
3 | Wolf |
4 | Fox |
5 | Dog |
6 | Big Dog |
7 | Good Boi|
How can I do this in Excel?