You have to use TinyDB to remember the first opening instant of your app.
Screen1.Initialize
If Get_TinyDB1(tag="firstInstantMillis", default=0) = 0 then
SaveTinyDB1( (tag="firstInstantMillis", value=Clock1.GetMillis(Clock1.Now()))
The GetMillis clock block converts an Instant into the number of milliseconds from 1970 to that Instant.
Subtracting the GetMillis of two Instants gives you the milliseconds between those Instants.
All the rest is math.
Search this board for Countdown apps for conversion from milliseconds to days, hours, etc.
ABG