MaatWoodfriend
New Member
- Joined
- Mar 17, 2025
- Messages
- 2
- Office Version
- 365
- Platform
- MacOS
Hello Excel Gods,
I have (what I hope) is a fairly simple issue, but have cooked my brain trying to find a solution. There's a good chance my brain was already cooked though, apologies in advance. Here's a silly, bare-bones example to illustrate:
I've uploaded the mini-sheet thing here, for what it's worth. What a cool function.
Thanks team!
I have (what I hope) is a fairly simple issue, but have cooked my brain trying to find a solution. There's a good chance my brain was already cooked though, apologies in advance. Here's a silly, bare-bones example to illustrate:
- On my first sheet I have a database of friends invited to a party - plus columns for their details and meal preference.
- On my second sheet I'm using INDEX to pull the list of friends, and VLOOKUP to pull only their meal preference column. On this sheet, there's also a "notes" column for specific meal-related info.
- When a friend tells me they can't come, I delete their row from the first sheet. When I invite a new friend, I add a new row in the first sheet.
- After adding or deleting a row, the second sheet's INDEX and VLOOKUP columns update as expected - but the "notes" column is static, so its data is out of sync.
I've uploaded the mini-sheet thing here, for what it's worth. What a cool function.
Thanks team!
Book1 | ||||||
---|---|---|---|---|---|---|
A | B | C | D | |||
1 | NAME | LOCATION | MEAL | |||
2 | Friend 1 | email@place | London | Beef | ||
3 | Friend 2 | thing@what | Paris | Chicken | ||
4 | Friend 3 | hello@bla | New York | Pork | ||
5 | Friend 4 | schmee@gp | Katoomba | Prawn | ||
6 | Friend 5 | ex@mple | Bogota | Cabbage | ||
Sheet1 |
Book1 | |||||
---|---|---|---|---|---|
A | B | C | |||
1 | NAME | MEAL | NOTES | ||
2 | Friend 1 | Beef | |||
3 | Friend 2 | Chicken | |||
4 | Friend 3 | Pork | Allergic to apple sauce | ||
5 | Friend 4 | Prawn | |||
6 | Friend 5 | Cabbage | |||
Sheet2 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
A2:A6 | A2 | =INDEX(Sheet1!A2:A6,,1) |
B2:B6 | B2 | =VLOOKUP(A2,Sheet1!A2:D25,4,FALSE) |
Dynamic array formulas. |