Hi. This may be impossible, but I have a need for an app where the user creates a 2 column monthly table with fixed headings and layout. The user populates the first column and month+year of the table from a drop down list of variables. These won’t change unless you need to add a category not already mentioned in the drop down. Then the populated table needs to be displayed on another screen. But you would only display one table at a time. The 2nd column is populated separately by a separate single entry that includes the amount and category it relates to and month +year. The created table needs a running total at the bottom of the table. Each time an entry is made, the table is updated and stored for future use. The 2nd column boxes would only show the running totals for each category, not the individual entries with a total of the totals at the bottom of the table in a separate box!
The populated and updated monthly table (With the running totals) needs to be available for future callup and view?
I assume I will also need go back buttons or cancel entry buttons.
Is this possible and how would i go about setting it up?
The tutorials are good, but I think I am asking for unusual stuff!
The table is two column (Category and amount) with headers and a running total at the bottom. It also needs a date box at the top (yyyyMM)652 - otherwise that is it.
So, my thinking was that I could store a monthly finished table that is still editable, but you are saying no. Please can you clarify why?
Set your TinyDB NameSpace to the category in question ('entertainment') and store numeric monthly values under tag yyyyMM ('202603'), default 0.
In TinyDB NameSpace TinyDB1, store a list of category names under tag 'CATEGORIES', initially an empty list.
TinyDb has a block to return a dictionary of all tags and values in the current Namespace, which you can feed into a summarization procedure that takes 3 minutes to code using the advanced list blocks.
I want to enter an individual amount (relevant to a particular category), but don’t need to see it.
The aim of the resulting table is exactly how you have stated - as in to show a total amount for a particular category for a particular month. Along with the totals of the other categories for the same month.
Sorry if I didn’t explain it right the first time!
Ok thanks - the app is intended to just be an easy rolling total of social spend. Nothing more serious than that - I have Sage for the other stuff, but thanks for the warning!
One last question - Is it possible to show multiple categories at the same time from Tinydb and maybe a total of all the categories for a given month?