Hi Eveyone,
I have to create an app where employee is able to enter their daily attendace system by themselves. Moreover, I want Paid Time Off (PTO) dashboard inside this app where employee will able to check their leave balance and request leave. On the Manager sice, Manager is able to approve/receive the request as well as check the attendance of the employee.(This one is manager only function).
We have full Microsoft office 365 subscription and my employer want this done with sharepoint list and office 365 username and password.
I am new to powerapp so please suggest me an idea so i can fulfill this task.
Hi @Poweruser_11 ,
Are you looking for something like this: https://powerapps.microsoft.com/en-us/blog/create-and-manage-leave-requests-with-ease/
You can create a Canvass App from a Template and select the Leave Application.
Sign in to PowerApps.
Thank you for the reply.
I checked this template but i also want to add daily attendace tracking of the employee.
Can you please help me with this.
The file on OneDrive is Excel Online. Best to use SharePoint if you want.
To update the Leave Type you need to change the Collection on the App's OnStart Property.
Hi @Poweruser_11 ,
The template app is just an example.
You could customize it according to your demands.
In your issue, you may want to add the "check in" function.
So I suggest you create a sharepoint list (e.g. CheckInAndOut) to store the information about employees' attendence.
Inset two buttons in one screen(named check in and check out)
Set the check in's OnSlect:
Patch(
CheckInAndOut,
Defaults(CheckInAndOut),
{
Title: "Check In&Out Test",
StaffName: User().FullName,
StaffEmail: User().Email,
Check_x0020_In: Now()
}
)
Set the check out button's OnSelect:
Patch( CheckInAndOut, Defaults(CheckInAndOut), { Title: "Check In&Out Test", StaffName: User().FullName, StaffEmail: User().Email, Check_x0020_Out: Now() } )
Here's a similar issue for your reference:
Best regards,
Community Support Team _ Phoebe Liu
User | Count |
---|---|
253 | |
251 | |
82 | |
45 | |
27 |
User | Count |
---|---|
351 | |
264 | |
127 | |
60 | |
58 |