I am having trouble with the 3rd argument in a Navigation formula OnSelect for a Button I've added to a screen.
I am trying to create a Timesheet app using Excel in OneDrive for Business as a data source and target. I created the app using the Employees table as the initial data source. PowerApps automatically created BrowseScreen1 which lists all Employees with NextArrow1 that users select to go to DetailScreen1.
DetailScreen1 automatically included buttons to go back, delete or edit. I don't want Employees to be deleted or edited in the app so I've removed those buttons. I have added a Button which I've renamed ButtonEnterWorkTime. This button needs to navigate to a new screen I created, named EnterWorkTime, where users will enter work time. The Employee_Name must be passed through from DetailScreen1 based on the Employee_Name selected on BrowseScreen1. It should then populate the Field on screen EnterWorkTime which will then write to the spreadsheet in TimeEntry.Employee_Name.
Please advise the correct formula for the OnSelect property of ButtonEnterWorkTime. So far I've got
Navigate(EnterWorkTime,ScreenTransition.None) which navigates to screen EnterWorkTime and of course nothing comes across because there's no 3rd argument.
I've tried all sorts of things to do it but I get an error message every time and the button no longer does anything.
Please advise what I should enter in the formula after "None".
Any suggestion is welcome and thank in advance.