I Re-minder App

Can someone help me with an app, where it tells you the date of every 2 Sundays, like

11th April
25th April
9th May

For now, I have made it work like this…

11
25
39

Link Of My Project: Thunkable

when i open your project everything is empty

how

@aarav-work
Check if the project in the following link suits u:
https://x.thunkable.com/copy/495b15d871192344386688bd191e8932

Reference (Days in a Month):

Reference (How to check Leap Year):

Hope this helps :slight_smile:

2 Likes

Um Its not working from my end! Check If I misclicked somewhere!Screen Shot 2021-04-17 at 2.55.44 PM

1 Like

till then even I will try to undertsand it and find out

1 Like

Can’t find the bug, can anyone help? :face_with_raised_eyebrow: :grimacing:

1 Like

What is app variable Day meant to be?

2 Likes

Variable Day will be one of these values
28
29
30
31

The test is evaluating if it is greater than 7 which it is and will start reducing it “7” at a time so the result will be
28 —> 7
29 —> 1
30 —> 2
31 —> 3

Then the “else” part will execute and will insert 4 similar entries in the calander list.

That is how the code works now.

1 Like

Yeah so any bugs found? Debugging?
Cuz @aarav-work said it’s not working

1 Like

The code will produce 4 entries of the same day of the week. For example, if the variable Day was 31 then you will have the Calendar List displaying 4 times “Wednesday” which is not proper

@aarav-work

I updated your code and made a few adjustments

https://x.thunkable.com/copy/064d4ca0e9f67bf16a1eff3f4e0b5e8f

It works, @aarav-work u can test it