Hi
When you insert Today() or Now() and format with TEXT to desired format, it will show the CURRENT date and time when it is inserted.
So, to make it works like a normal Clock, you have to use:
- A timer, with OnTimerEnd = UpdateContext({Now(): MyClock})
- Duration = 100 (100 ms)
- Autostart = True
- Repeat = True
And have a lable to show MyClock
Note: MyClock is the context variable which is updated
- every 100 ms and autostart when the apps is opened and repeat everey 100ms.
PowerApps doesn;t teach how to make a real clock, we got to use Timer + UpdateContext.
Hope this helps and you learn how to make a real time clock.
TQ