I’m creating a babysitting exchange app, where moms watch each other’s kids in turns and earn points, that they can later redeem within the network. 1 hour of babysitting is 1 point, and each user starts with 5 points upon sign-up.
I have created the user profiles already, and I created a form where users can submit who watched whose kids, and for how long. I want the app to calculate the current point balance of each user based on this form, so add the points equaling the hours for the first user and subtract the points from the second user.
I’m using Glide tables, how can I do this? I assume it should be a transactions sheet and a points sheet linked to the user sheet, and using maybe some math columns, if-then-else or action setups, maybe a rollup column? I’m lost a bit…
Thanks a lot, it’s quite a comprehensive series. I watched the episodes but I still feel uncertain about how exactly to proceed.
I have created user onboarding and a form where users can submit who provided the service for who and for how long. 1 hour = 1 point for simplicity.
I need to link the points earned to the user who provided the service and the points lost to the user for whom the service was provided. I guess it should be relation, but I’m not sure which columns to connect to work properly.
I need to add points earned to the starting balance from one user and I need to subtract the points paid from the starting balance of the other user, but I’m not sure how to do this, so it’s always updating itself.
I need to calculate the current balance to be able to show it to users