How can i use text input control to automatic navigate to next screen when the scan value is correct. Example.you scan the Staff number and it is correct and same with your data source it will automatic open the next screen. Please help
@Richie19023 жыл бұрын
Hi Jaycee - for this approach I would use a combination of a condition statement and a hidden button - if you have to look up your data source to check the ID text scanned - first up put a button on the canvas with an action to navigate to the screen you want - call it btn_Navigate or something, then access the onchange setting for your text control and run the formula to check the value of the text input against your ID in your data source - you could use a CountIf or Lookup - depending on the size of the data source - if under 2000 a countif formula would do it - eg CountIf(myDataSource, ID = MyTextInput.Text) - then use this formula in a condition that will either call the button or not - eg (onTextInput change) If(CountIf(myDataSource, ID = MyTextInput.Text) > 0, select(btn_Navigate)) - this approach will either return a 0 if no records - so wont call the button, or if there is a match you'll get a 1 and so the button will be triggered and the screen will navigate - hope this makes sense!
@jasonbailey91394 жыл бұрын
Trying to find the URL. When I click on details, it lists the name, creator, open, pin, favorite, publish date, environment, release, and how I'm signed in. I don't see the URL. Is that something that is only listed for the creator?
@jasonbailey91394 жыл бұрын
Oh, I found it. Since I am just the user of the form, I hadn't opened PowerApps in a web browser on my PC. That's where you get to the URL. Thanks so much for this. It's going to make logging entry into certain locations so much easier.
@Richie19024 жыл бұрын
@@jasonbailey9139 - awesome glad you got there!
@gladysaguilera2290 Жыл бұрын
hi, if I update the app version, would the old QR code be updated ? do you know?
@Richie1902 Жыл бұрын
Hi Gladys - the url for the app doesnt change as you update its versions / republish it so your QR code link will remain the same. The run time of the app gets updated to bring in new features and show your latest changes, but the link via a QR will always remain the same.. Hope this was the question! let me know if that answer it!