PowerApps Time Tracking

  Рет қаралды 43,176

Shane Young

Shane Young

Күн бұрын

Пікірлер: 56
@mentaljuvenile
@mentaljuvenile 3 жыл бұрын
I could have done with this video last year. I was asked to try and make a pilot app that logged ferry, productive and duty time. It took me a while to come up with this method. I'm glad I ended up with a solution similar to yours.
@Shellbell292
@Shellbell292 Жыл бұрын
Hi Shane, another great video which has allowed me to gain more Power Apps experience 👏🏻
@davidmckenzie1889
@davidmckenzie1889 3 жыл бұрын
You could have the 'timer' bit working when you exit and restart the app by having the timer on repeat and setting a variable OnTimerEnd to Now - WhenStarted and using this variable rather than the timer value. Start the timer on app start and have a 1 second duration (or 2 seconds, 5 seconds or whatever). David
@ShanesCows
@ShanesCows 3 жыл бұрын
Interesting idea David. Thanks for sharing. 😀
@robertvanraamsdonk4381
@robertvanraamsdonk4381 3 жыл бұрын
@@ShanesCows David's method is solid. Used that mechanism on a customer time tracking app last year, timer set to 1 sec cycle on repeat, app displaying the time difference between TimerStart variable and Now() variable, with the Now() variable being updated every 1-second timer cycle OnTimerEnd. Works like a charm.
@sannsor8799
@sannsor8799 2 күн бұрын
Amazing explanation. Thank you
@ShanesCows
@ShanesCows 2 күн бұрын
You are very welcome!
@Toto-pw4tw
@Toto-pw4tw 2 жыл бұрын
Hi Shane! Could you make an app on tracking daily attendance?
@ShanesCows
@ShanesCows 2 жыл бұрын
I will add it to the list to consider. :)
@ramsree20
@ramsree20 Жыл бұрын
Hi Shane, thanks for your video! Is there a way to track PC idle time (no key strokes or mouse click time) in power apps? Please suggest
@ShanesCows
@ShanesCows Жыл бұрын
Not that I know of.
@mardithpascua8112
@mardithpascua8112 Жыл бұрын
HI Shane, I do have Time Logs Tracker with Start and Stop button, it saves record to SharePoint. However, for some users in different country - when they save to SharePoint it is showing different year and some date has SA or CH. I am patching the Now() to SharePoint list.
@felipeabajo
@felipeabajo Жыл бұрын
This is wonderful. Thanks a lot Shane
@ShanesCows
@ShanesCows Жыл бұрын
Happy to help
@tahamid03
@tahamid03 Жыл бұрын
Shane you are a Rock STARR. I learned almost everything from you. I implement this solution to one of my use case. But the issue that i am having that when someone start the timer that person only can go and stop the timer. Is it possible that other user also can go stop the timer. Thank you so much for your help.
@ShanesCows
@ShanesCows Жыл бұрын
Not possible. That is why I wouldn't start a timer. I would record Now() when they start and then have an end button that records Now() when they stop. So you can calculate the time.
@GrahamParker-c3u
@GrahamParker-c3u Жыл бұрын
Hi Shane, cool app. Have you got a video on calculating future dates. In my work place we start a production run that runs for example 265hrs, I would like to make an app that the user enters the start date and time and the run hours and the app works out what the end date and time will be.
@ShanesCows
@ShanesCows Жыл бұрын
This video might help kzbin.info/www/bejne/fJPHeH-MeNuaiNE Long story short I would be using DateAdd(Now(), 265, Hours) and you would get 265 from now. You will then need to replace Now() with the selected time.
@GrahamParker-c3u
@GrahamParker-c3u Жыл бұрын
@@ShanesCows Thanks Shane 👍
@genovjillella3602
@genovjillella3602 3 жыл бұрын
Great video Shane, How would you add a pause button to this app.
@ShanesCows
@ShanesCows 3 жыл бұрын
Think of it as stop and start again is my first idea.
@sabrinaksy
@sabrinaksy Жыл бұрын
Hi Shane! Could you make an app showing a live clock?
@ShanesCows
@ShanesCows Жыл бұрын
Hi Sabrina. I have never actually done that. I will add it to my list to think about. Thanks
@michellekosek
@michellekosek 7 ай бұрын
when the data is sent to sharepoint, it is roudning up to the nearest minute - i need seconds since most our tasks are less than a minute long. how would i accomplish this?
@ShanesCows
@ShanesCows 7 ай бұрын
Store the time as Text instead of as a number since SP will not keep the seconds. :) Use Text function to turn number into Text. Use Value function to turn text number back into a number number. :)
@epiccipe3061
@epiccipe3061 7 ай бұрын
Can we add a dashboard for the user names and total time used in a day if yes then how?
@ShanesCows
@ShanesCows 7 ай бұрын
Maybe use something like this video to build the dashboard? kzbin.info/www/bejne/jYepn3aOrbpjpcU
@ebimonws6521
@ebimonws6521 3 жыл бұрын
Hi Shane- I need a track active screen work time. Can you please help me with your suggestions
@vikasumapathy5056
@vikasumapathy5056 3 жыл бұрын
Hi Shane, as you know working from home we are using teams for meetings and calls more often than not, is there way I can auto track my call and meeting time using powerapps or flows??
@ShanesCows
@ShanesCows 3 жыл бұрын
Not that I know of. 😐 Would be cool though.
@markperrah186
@markperrah186 Жыл бұрын
In teams you can add apps and pin them. Add power apps and add this timer app or one like it, then start and stop from inside teams. i made one for my check, lunch out, lunch in, check out times. and has a history gallery showing 1 week at a time, (with Shanes help of course)
@ravitutika1204
@ravitutika1204 3 жыл бұрын
Hey Shane your playlist for Power Apps is ordered ? can i start one by one if am beginner
@ShanesCows
@ShanesCows 3 жыл бұрын
Best to get you going is to watch training.powerapps911.com where I have a free intro class. My playlist is not ordered. 😑
@APBITEMS
@APBITEMS Жыл бұрын
Hello Shane, thanks for this awesome video! I have a very specific question and I hope I can get some insight and help from you if possible! Our company has a manual-entry form that I made in Power Apps , and recently we wanted to optimize it and track the time for how long a specific task is completed in. Our app consists of multiple buttons , so I tried putting some patch function into our button that enables a user to enter a new form( its a button that puts out an empty form and also starts a timer on the screen), but I cant get the data from the form itself ( so the data the user needs to fill in) , I just get a new blank record in my sharepoint list with a start time and when I press submit, with the end time and the time spent as the difference between the two. My main goal is to collect the data in the form ,as well as get the time difference between the start and the end time of the task into the sharepoint list (calculating the time spend). Is there a possible and an easy fix for this kind of problem? Looking forward to more videos like this!
@Shyavasva
@Shyavasva 3 жыл бұрын
Shane I asked for some info in the contact form in your website a few days back but have got no response.
@ShanesCows
@ShanesCows 3 жыл бұрын
Hmm. Reply to the email you got back and I will try to help
@ChBharath-qy3cl
@ChBharath-qy3cl 8 ай бұрын
How to calculate end time if powerapps app is idle for one hour.
@ShanesCows
@ShanesCows 8 ай бұрын
Have the app log while they are active. Not sure you can trigger anythign when they are not active.
@RanmaSaotome666
@RanmaSaotome666 3 жыл бұрын
Shane your are LEGENDARRRRRY :D I'm laughing since the point, that you will use IOT power plugs and this to turn off your kids monitor :D :D :D Sincerly, i'll bring it up next time a customer asks me "why is powerplatform good" :D... Fantastic use case, explanation and videon as usual ;) BTW also the MYMbas was great!
@ShanesCows
@ShanesCows 3 жыл бұрын
I do what I can. 😂
@asimrehan73
@asimrehan73 3 жыл бұрын
Hi Shane, thats a very nice setup that can be used in many time tracking scenarios. My issue is ; the time reference for the app is the time set on the device being used. There should be way to capture standard/correct time. Or else kids will change the time settings on their phone and falsely capture less time spent on games. 😅
@ShanesCows
@ShanesCows 3 жыл бұрын
You could create a record in SHarePoint. The Created By time of the record would be a standard time your kids couldn't mess with. 😀
@asimrehan73
@asimrehan73 3 жыл бұрын
@@ShanesCows my kids are smarter then me, they will find a way 😅. Once again, thanks for a well explained video.
@epiccipe3061
@epiccipe3061 7 ай бұрын
where can I download this app?
@ShanesCows
@ShanesCows 7 ай бұрын
Subscribe here training.powerapps911.com/courses/video-library
@hajiebaguio9143
@hajiebaguio9143 11 ай бұрын
Hi sir. Can help me how make machine down tracker?
@ShanesCows
@ShanesCows 11 ай бұрын
Power Apps cannot watch for something to go down. Maybe you could do it with flow? I am not sure, never treid to make a down tracker.
@hajiebaguio9143
@hajiebaguio9143 11 ай бұрын
@@ShanesCows thanks
@hajiebaguio9143
@hajiebaguio9143 11 ай бұрын
Or machine downtime log and see the dashboard colorcoding with comments.
@hevj27
@hevj27 3 жыл бұрын
Hi Shane, your videos have been very helpful. I've been learning power apps and been encountering weird issue. I often get this error message when trying to edit an app: "Change Power Apps Version, Something happened to the power apps version you were using." Could you help me with this? Thanks a lot!
@vickymishra3520
@vickymishra3520 3 жыл бұрын
Hii Shane,plz make video on get and post Api
@ShanesCows
@ShanesCows 3 жыл бұрын
Like this one? kzbin.info/www/bejne/nX3Lo3uuq7B1mqs
@GregNow
@GregNow 2 жыл бұрын
Ok, so there is quite few accounting software solutions that have a kiosk where I can track log in log-out to the shop by employees, but I am looking for solutions that work on small building sites. I want to have log in and Log out times of workers. Perhaps one screen in the app that I can see who is on the job site at a given time and what are the attributes of that worker and maybe if they received induction or so I know that we have a fire marshal, first aider etc., perhaps the person who received training in access platform assembly or simply a visitor like an architect. I guess this would have to be pulled out from some data source (list?!) Also, in case of fire, I can see who is at the assembly point and how many people logged in to the site that day. So maybe one screen with lig i. Log out and a current number of people on site. Perhaps they can use QR code cards so it's easy to enter all that info and keep log of it After having this information, I would like to be able to pull out that data to create weekly time sheets per worker. And who knows, maybe use power automation to let them know their hours on Fridays with some report or keep track of project hours. It feels like the benefits can be endless How difficult is it to do that?
@iyengar007
@iyengar007 3 жыл бұрын
Wonderful... Loved it very much., Now my second request (working PowerApps in Offline/Online). I'm still waiting for 1st request. If you don't remember; I can type again. XOXO
@ShanesCows
@ShanesCows 3 жыл бұрын
Here is offline video kzbin.info/www/bejne/hKjFopd3bs9re80
@vickymishra3520
@vickymishra3520 3 жыл бұрын
Yes
Power Apps Inspection Image Markup with Pen Input
13:55
Shane Young
Рет қаралды 15 М.
PowerApps Calendar Control - Build your own using Galleries
35:02
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 17 МЛН
coco在求救? #小丑 #天使 #shorts
00:29
好人小丑
Рет қаралды 97 МЛН
How to Create a Timer App in Power Apps for your projects
33:44
Multiple Screen Form Control in Power Apps
29:46
Reza Dorrani
Рет қаралды 276 М.
Complete Project with Power BI, Power Apps, Power Automate and Dataverse
1:12:45
Power Apps Tutorial
2:42:26
Learnit Training
Рет қаралды 350 М.
PowerApps Timesheet Template
13:19
April Dunnam
Рет қаралды 82 М.
No Code App Development is a Trap
9:31
Coding with Dee
Рет қаралды 326 М.
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 17 МЛН