Announcements
// Store details for First Time User If( IsBlank(LookUp(AppUsers,'User Email' = User().Email).'User Email'), Patch(AppUsers, Defaults(AppUsers), {'User Name': User().FullName, 'User Email': User().Email, Office365ID:User().EntraObjectId}) ); If( IsBlank(LookUp('Leave Allowances', 'User Email' = User().Email).'User Email'), Patch('Leave Allowances', Defaults('Leave Allowances'), {'User Email': User().Email, Office365ID: User().EntraObjectId}), Patch(LookUp('Leave Allowances', 'User Email' = User().Email), {'User Email': User().Email, Office365ID: User().EntraObjectId}) );
With( { _User: LookUp( 'Leave Allowances', 'User Email' = User().Email ) }, Patch( 'Leave Allowances', { ID: _User.ID, 'User Email': User().Email, Office365ID: User().EntraObjectId } ) )
Patch( 'Leave Allowances', LookUp('Leave Allowances', 'User Email' = User().Email), { 'User Email': User().Email, Office365ID: User().EntraObjectId } )
With( { _ID: LookUp( 'Leave Allowances', 'User Email' = User().Email ).ID }, Patch( 'Leave Allowances', If( IsBlank(_ID), Defaults('Leave Allowances'), LookUp( 'Leave Allowances', ID = _ID ), { 'User Email': User().Email, Office365ID: User().EntraObjectId } ) ) )​​​​​​​
With( { _ID: LookUp( 'Leave Allowances', 'User Email' = User().Email ).ID }, Patch( 'Leave Allowances', If( IsBlank(_ID), Defaults('Leave Allowances'), LookUp( 'Leave Allowances', ID = _ID ), { 'User Email': User().Email, Office365ID: User().EntraObjectId } ) ) )
Patch( 'Leave Allowances', LookUp( 'Leave Allowances', 'User Email' = User().Email ), {Office365ID: User().EntraObjectId} )
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
WarrenBelz 529 Most Valuable Professional
Haque 230
Kalathiya 217 Super User 2026 Season 1