Search Text Box Search ( 'Personal Informations' , TextInput1 . Text , cr2bf_phonenumber , cr2bf_email ) Live Time Text(Now(), "[$-en-US]dd/mm/yyyy hh:mm:ss AM/PM") To show live date and time in Microsoft Power Apps , follow these steps: ✅ Step-by-step: Insert a Label onto your screen. Set the Text property of the label to: Text(Now(), "[$-en-US]dd/mm/yyyy hh:mm:ss AM/PM") This will display the current date and time in dd/mm/yyyy hh:mm:ss format. ⏱ To Make It Update Live (Auto Refresh): Power Apps doesn't auto-refresh labels on its own, so to simulate a live clock: Add a Timer control to the screen ( Insert > Input > Timer ). Set these Timer properties: Duration : 1000 (for 1 second) Repeat : true AutoStart : true OnTimerEnd : Set(CurrentTime, Now()) Then set the label’s Text to: Text(CurrentTime, "[$-en-US]dd/mm/yyyy hh:mm:ss AM/PM") Role Base Access If ( User () . Email = "adit...