Hello everyone,
I’m trying to build a simple devotional app in Glide and I’m wondering if the following use case is possible.
I have a table called “Andachten final” with 366 rows (one for each day of the year, including Feb 29).
Relevant columns:
month_num(1–12)day(1–31)- plus the devotional content
Example:
| month_num | day | title |
|---|---|---|
| 1 | 1 | SEGEN |
| 1 | 2 | TRIUMPH |
| 3 | 7 | … |
What I want is very simple:
The app should automatically show the record for the current day.
Example:
- March 7 → show row where
month_num = 3andday = 7 - March 8 → show row where
month_num = 3andday = 8
In other words something like:
month_num = current month
AND
day = current day
I already tried several approaches with ChatGPT and Gemini (using things like Date/Time columns, Extract Date Part, relations, etc.), but I couldn’t get a reliable solution.
Before spending more time experimenting, I wanted to ask:
Is this a supported/typical pattern in Glide, and if so what is the recommended way to implement it?
Thanks in advance!
Patrick