How to display times for different cities on the same screen? and keep updating the time without click on anything on the screen?

How to display times for different cities on the same screen? and keep updating the time without click on anything on the screen?
Hi @usaman45 ,
Check for your hours difference between your cities and use labels to display the time. Add a timer control and set its OnTimerEnd property to
Set(Var1,Now());Set(Var2,DateAdd(Now(),1,Hours));Set(Var3,DateAdd(Now(),2,Hours))
//Var1 is my local time, Var2 is a my local time+1, Var3 is my local time+2and set the Duration to 60000, set the AutoStart and Repeat to True
Set the various label text to the various variables using this formula
Text( DateTimeValue( Var1), "hh:mm:ss AM/PM" )Each label with it variable. You need to indicate the number of hours to add based on your cities time zones. The idea is that every 60sec, the various clocks will be updated
Please accept as a solution if it works for you. Don't forget to give a thumbs up as well. Thanks