A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hello,
the following steps work for me: first add the new recipe in the recipes sheet. Make sure that you enter it in the table, i.e. don't leave any blank rows between existing and new recipes.
Next add the ingredients. The new recipe will show in the recipe dropdown.
Now you can use the dish in the meal plan.
I found that the template does not work with regional settings where the date format is different to MDY. My defaults are DMY and I could not get the shopping list button to work at all.
The reason is that a hidden sheet holds the date filters used in VBA. But VBA is so very fixed on the US date order MDY that filter won' work for regional settings that use DMY.
To make the template work for a DMY date order, change the following line of VBA from
[WeekPlanCriteria].Offset(1).Resize(1) = Array(">=" & [ShoppingStartDate], "<=" & [ShoppingStartDate] + 7)
to
[WeekPlanCriteria].Offset(1).Resize(1) = Array(">=" & Format([ShoppingStartDate], "MM/dd/yyyy"), "<=" & Format([ShoppingStartDate] + 7, "mm/dd/yyyy"))
After that, the template will work in any regional setting.