Hello all. I have an application with mulitple screens; Main, New registration, and Edit existing registration. On main screen is list of all previous registrations with a button per record that enable the user to go to Edit existing registration with that particular information repeated for editing. On Main screen I want to have all registrations shown. I however only want button to show on those particular registrations assigned to the current logged in user. Since a user may have multiple registrations, the button should only show up for those registrations and no others. I do not want a different user who is logged in to get to someone else's edit screen to make changes. I assume I have to assigned the button a visible attribute at start of app but do not know the proper formula to do this.
Button Onselect is currently set to: ClearCollect(currentReg,Gallery4.Selected);Navigate(UpdateRegistrationForm,ScreenTransition.Cover)
I currently have data connectors to Office 365 users and use a SP list for saving new registrations and updates to existing registrations. I have variables set for User(). Full Name, .email, .ID.
Any ideas would be greatly appreciated.....