RaviWildcat
Board Regular
- Joined
- Jun 18, 2010
- Messages
- 114
- Office Version
- 365
- Platform
- Windows
- MacOS
Hello everyone,
2 questions for you -
Given the following names_items table
Name .....Items Sold
Greg ......Cookies, Candy
Peter..... Candy, Chocolate
Bobby.... Fruit, Chocolate
a) Is there a way (using formulas) to populate the following items_names table?
Item.......... Sold By
Cookies...... Greg, Peter
Candy ........Greg, Peter
Fruit ..........Bobby
Chocolate ...Peter, Bobby
b) I created a column with the items sold and tried the following array formula but I'm not sure why it doesn't work and gives be a #VALUE
A .............B
11 ............Item Sold By
12 Cookies..{=IF((FIND(A12,C4:C7)),B4:B7,"n.a.")}
(The logic I'm tryign to use is - if I can 'find' the value on the left in the second column of the names_items table, then give me the value of the first column from the names_items table?
2 questions for you -
Given the following names_items table
Name .....Items Sold
Greg ......Cookies, Candy
Peter..... Candy, Chocolate
Bobby.... Fruit, Chocolate
a) Is there a way (using formulas) to populate the following items_names table?
Item.......... Sold By
Cookies...... Greg, Peter
Candy ........Greg, Peter
Fruit ..........Bobby
Chocolate ...Peter, Bobby
b) I created a column with the items sold and tried the following array formula but I'm not sure why it doesn't work and gives be a #VALUE
A .............B
11 ............Item Sold By
12 Cookies..{=IF((FIND(A12,C4:C7)),B4:B7,"n.a.")}
(The logic I'm tryign to use is - if I can 'find' the value on the left in the second column of the names_items table, then give me the value of the first column from the names_items table?