I know that you are looking for a VBA solution, however since this has not received many responses here is an example of how this might be done using formulas.
1) On Tabelle 1 the recipes are put into records which makes it easier to access the data. Column F, which was not in the original data, is populated using: =IF(ISTEXT(G2),G2,F1)
2) On Tabelle 2 data validation is applied to cell E1 which takes the place of the buttons on Tabelle 1 and which references the list in column N.
3) The array entered formula* which populates column A is:
Formula:
=IFERROR(INDEX(Tabelle1!G$2:G$15,MATCH(1,(Tabelle1!F$2:F$15=E$1)*(Tabelle1!H$2:H$15=C4),0)),0)
4) On Tabelle 3 the array entered formula* that populates columns A and B is:
Formula:
=IFERROR(INDEX(Tabelle2!B$3:B$23,SMALL(IF(Tabelle2!$B$3:$B$23>0,ROW($3:$23)-2),ROW(1:1))),"")
*Array entered formulas are confirmed by pressing CTRL+SHIFT+ENTER to activate the array, not just ENTER. You will know the array is active when you see curly braces { } appear around your formula. If you do not CTRL+SHIFT+ENTER you will get an error or a clearly incorrect answer.
In the future please upload files directly to this site. (directions in post #4)
Let us know if you have any questions.
Bookmarks