Hi @BenjaminMartin ,
Have your issue been resolved? If not, happy to help further.
If you'd like the Gallery to only show entries for the current user instead of everyone's entry, please add one more logic criterion in Filter formula in Items property:
Filter('SP list', 'Created By'.DisplayName = varUser.FullName)
Set(varUser, User()) // save User info into variable in App.OnStart property
In your Patch function, you need to reference the control value using dot notation, rather than the control itself.
Patch('Capex Hours Reporting', Defaults('Capex Hours Reporting'), {Facility_31:ddMarket.Selected.Result}, {Project_title:ddProject.Selected.Result},{pay_period:ddpay_period.Selected.ColumnName},{hours:Value(texthours.Text)},{close_project:closetoggle.Value})
Hope this helps
Sik