# Calendar and data - school project

**URL:** https://community.thunkable.com/t/calendar-and-data-school-project/1012510
**Category:** Questions about Thunkable X
**Created:** [December 1, 2020, 5:58pm UTC](https://community.thunkable.com/t/calendar-and-data-school-project/1012510 "2020-12-01T17:58:57Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![mijapulloutq7f](https://avatars.discourse-cdn.com/v4/letter/m/f475e1/32.png) [@mijapulloutq7f](https://community.thunkable.com/u/mijapulloutq7f)
#### Post date: [December 1, 2020, 5:58pm UTC](https://community.thunkable.com/t/calendar-and-data-school-project/1012510/1 "2020-12-01T17:58:57Z")

</div>

Hello everyone!

I have a question regarding programming an app in thunkable: I am currently working on a project in school (I am in 8th class in Germany) and try to create an app that counts your daily waste / garbage and helps to reduce it. I have a problem and can’t find out by myself - here it is: I would like to use a calendar (I already got a template for this) but can’t find out how to implement a data at one specific date and how to store it… It’s a bit the same idea as adding your own weight at a specific date and store it. It would be great to get a graph out of it also, that shows the different days with the given data.  
What I have so far is a stored variable - the app gives you a list of things to choose and you can add the value. But how to connect this with a calendar…? Thanks in advance - I really appreciate your help.

Stay safe!

Mia Jasper

---

<div class="post-metadata">

### Author: ![tatiang](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/tatiang/32/55482_2.png) [@tatiang](https://community.thunkable.com/u/tatiang)
#### Post date: [December 1, 2020, 7:40pm UTC](https://community.thunkable.com/t/calendar-and-data-school-project/1012510/2 "2020-12-01T19:40:41Z")

</div>

Hi Mia, welcome to Thunkable!

Can you either share the template project link or offer a reference to it? It’s hard to know how to help you without knowing how the calendar feature is set up.

---

<div class="post-metadata">

### Author: ![mijapulloutq7f](https://avatars.discourse-cdn.com/v4/letter/m/f475e1/32.png) [@mijapulloutq7f](https://community.thunkable.com/u/mijapulloutq7f)
#### Post date: [December 2, 2020, 5:24pm UTC](https://community.thunkable.com/t/calendar-and-data-school-project/1012510/3 "2020-12-02T17:24:31Z")

</div>

Hi tatiang,  
thanks for your welcome and thank you for your answer.  
I built a prototype with that specific function:

[Prototype](https://x.thunkable.com/projects/5fc77e15d09a8800113da8df/041cfd68-38fa-4f66-91f7-f14ad3b0bc79/designer)

Today I got the hint that it might be better to use the “date input” function instead of the calendar function (thanks to rollke).  
My question is: How to store the data for each single day (at the moment the app just adds every input) and how to connect this with the “data input”. At the end I would like to have a graph that shows a cummulation of each single day.

Thank you very much for having a look into it.  
Sorry that I can’t explain it better - let me know if you have any questions…  
Thanks!

---

<div class="post-metadata">

### Author: ![rollke](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/rollke/32/14413_2.png) [@rollke](https://community.thunkable.com/u/rollke)
#### Post date: [December 2, 2020, 8:22pm UTC](https://community.thunkable.com/t/calendar-and-data-school-project/1012510/4 "2020-12-02T20:22:08Z")

</div>

Hi,  
you could use Local\_DB (a sort of spreadsheet with rows and columns) or you could try lists of lists.

The best way would be to use Realtime\_DB. But for that your users have to use a Firebase (internet connection) and you have to provide a Firebase account. I think that is a “bit too much” for a school project.

---

<div class="post-metadata">

### Author: ![rollke](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/rollke/32/14413_2.png) [@rollke](https://community.thunkable.com/u/rollke)
#### Post date: [December 6, 2020, 7:08am UTC](https://community.thunkable.com/t/calendar-and-data-school-project/1012510/5 "2020-12-06T07:08:12Z")

</div>

Here is a small example for a solution with lists of lists.  
The list for kichengarbage (as a stored variable) is a list containing small lists with two elements (type of garbage and counter for that type).  
In the textfield you enter a type of garbage. If it is new, the new element will be appended to the garbage-list. If this type is already in list (else) the counter will be increased by 1.

> **[Thunkable](https://x.thunkable.com/copy/336fde08ae26f6d6b5e079a5a5c60868)**

---

<div class="post-metadata">

### Author: ![ioannis](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/ioannis/32/146956_2.png) [@ioannis](https://community.thunkable.com/u/ioannis)
#### Post date: [November 8, 2024, 12:19pm UTC](https://community.thunkable.com/t/calendar-and-data-school-project/1012510/6 "2024-11-08T12:19:57Z")

</div>


