Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

jagooch

macrumors 6502a
Original poster
Jul 17, 2009
819
256
Denver, co
How would you handle grocery lists where you buy items from different stores for 2 reasons

1) Some items are only carried by specific stores
2) The item is in both stores, and you want to buy it from whichever one is closest at the moment.

The hard part is aisle ordering. Let's take case #2 and say the item is "milk" . Let's assume it is available in 2 stores, StoreA and StoreB.

In StoreA, milk is on aisle 2 name "dairy section".
In StoreB, milk is on aisle 17 named the "milk" section in this store.

So you would want that reflected in the categories "aisle 2" and "aisle 17" .

You could have 2 lists with milk in different aisles. But then you have manage milk in both lists and check off both when you buy it.

Or you could have 1 list and use tags like "StoreA_Aisle2" and "StoreB_Aisle17" along with filtering by tags. Perhaps have a master list and a smart lists for each store.

Thoughts?

Additional Info

I’m looking to duplicate my experience in Anylist as closely as possible in Apple Reminders. I know that I’ll have to make compromises like seeing the total cost and store-specific prices, but I want to see how close I can get. Admittedly, Anylist sets a really high bar, but I was curious.
 
Last edited:
If feeling ambitious, rolling one's own solution via Shortcuts and using dictionary files might be an option.

Sounds like a dictionary in this basic layout, "what" then list of "where and aisle":

Code:
{
"Milk":{"StoreA":16,"StoreB":2},
"Soup":{"StoreC":12},
"Apples":{"StoreA":1,"StoreB":1,"StoreD":1}
}

On the phone, setup an Automation of "when I arrive at StoreA" to read in the dictionary and find all entries that are for StoreA and then can make a Note of it and display it (or skip Automation and have a Shortcut you can run that asks for "what store").

Save the dictionary under iCloud so can sync between Mac and i*OS.

Above dictionary can be used as the master list of what and where, then have a Note that is your list. When arrive at location, pull up Note and for each line in Note, see if store is in approved list for item in question: if so, add to a temp Note. Or generate Notification that you can swipe away.

Yeah, not fully fleshed out, but a starting point that might generate a lightbulb moment.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.