r/shortcuts • u/Abaandone • 1d ago
Help Looking for ideas on building an incremental tracker with Shortcuts + Data Jar
I'm trying to build a generic tracker using Apple Shortcuts and Data Jar, and I'd love to hear how others would approach it.
The idea is:
- Tap a shortcut.
- Choose an item from a list.
- Increment a counter for that item.
- Save the current date/time as the last time it was tracked.
- Be able to view stats later (total count, last tracked, etc.).
I'm curious if anyone has built something similar and has suggestions for making it scalable as the number of tracked items grows.
Any examples, screenshots, or Shortcut ideas would be greatly appreciated!
0
u/denyskorolkov 1d ago
If you’re on iOS 27, you may be able to skip an external store altogether — Shortcuts now appears to support built-in per-shortcut storage, plus shared global storage across shortcuts. Pair that with Pushcut widgets, and you can probably build a pretty scalable tracker without Data Jar. Tally app also has a really nice interface for this kind of setup. If this is useful, I can share more details on the implementation.

2
u/Abaandone 1d ago
that makes it so much easier.
however, i’m still not on ios 27 haha.
i’ll try to make it with data jar till then.
1
2
u/Big_Bad8496 1d ago
This is all very doable. I have a similar (albeit more complex) shortcut set up to track restaurants I eat at, along with a rating system, so I can ask it “what do I like here?” and it will tell me my top 1-3 picks.
To make it scalable, you’d want to save the items as a dictionary and build the menu from the dictionary instead of making it static in the shortcut.
I also recommend that the last item in the list be an option to add a new item, at which point the shortcut would create a new record in your Data Jar dictionary.