Selecting lines based on number of times selected in past.... or something along those lines!

Peter.Stevens2

Board Regular
Joined
Sep 16, 2008
Messages
56
Hi Excel Wizards and Guru's, in my never ending quest to make my life easier I've developed a spreadsheet which contains recipes of the meals I like eating. I've then written a series of macros/forms to create a meal plan for the coming week which then generates the shopping list of the ingredients I need to buy.

My problem is that the planner selects recipes based on random number generation so I'm often getting the same meals week after week. Ideally I'd like to put some sort of validation in so that meals that have been selected less often would have a higher probability of being selected when I generate a new plan, thus putting more variety in the meals that are selected and making sure that I get my 5 portions of Fruit and Veg a day!

If anyone wants a copy of the file once it's complete, PM me and I'd be happy to forward one along.

I guess it's a crude for of MRP for my kitchen...Any help you could offer would be greatly appreciated! Thanks!
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
How about assigning a count table that records the number of times a meal is selected and then applying a weighting function to that to reduce probability of that meal being selected? Something along the lines of:

If Meal count >3 Then
(Meal) x (random variable) x (0.1)
Meal count (for that specific meal) = Meal count (for that specific meal) - 1
Else
(Meal) x (random variable) x (0.9)
Meal count (for that specific meal) = Meal count (for that specific meal) + 1
End if

You could then update by replacing 3 with some kind of incremental counter so as a meal becomes less selected, the chances of it being selected in the future increase and those selected more often decrease.

Someone asked a similar question a while ago about randomally generating dice rolls, but with a reduced weighting for numbers 5 and 6. I posted an answer to that if you want to search and modify.
 
Upvote 0
That's the one, just had a look at that thread - happy memories!

What about adjusting your code to consider different world cuisine's too - e.g. if you have a desire for an Italian or Mexican or Indian meal? I'm sure you could easily build that in?
 
Upvote 0

Forum statistics

Threads
1,215,223
Messages
6,123,711
Members
449,118
Latest member
MichealRed

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top