[Solved] How to store future dates in Thunkable X?

Hi there,

You would have to design a function to get a future date.
If we imagine you only want to get dates 7 days in the future, you’d need to:

get how many days are in the current month
add 7 to the current day of the month (call this result x)
if x > days in current month, subtract days in current month from x and add 1 to current month (to get date at beginning of next month)

You can find APIs that call a calendar function if that would be helpful to you. Check out actech’s replies in this thread

Thanks,
Jane

1 Like