Re: Need help making a formula that by inputting a recipe, it gives the list of ingredients?
Let say your 5 recipes or in the sheet1 with the name/code in column A and other column contain all ingredient.
In that case, you can use sheet2 to do your search and see all the ingredient
In a specific cell, you will need to write the name/code wit the good syntax (let's say B2)
Then at the cell you want to see the first ingredient you will need VLOOKUP(B2,Sheet1!$A$1:$I$5,2,TRUE)
For the second ingredient VLOOKUP(B2,Sheet1!$A$1:$I$5,3,TRUE)
And so on ...
If you don't want to complicate yourself, this could work perfectly for you.