🍬 Get my free video course, access to my free community, and, if you would like, you can book a call with me here: go.superpowerlabs.co/opt-in-page-page ⬅ You will probably want to check out the playlist to see all the videos in order, here: kzbin.info/aero/PLMgWds5p226kahVH4HVii2jrddLjaMKsM
@crisgath35122 жыл бұрын
Love it. Thanks for taking the time to share this video, can't wait for the vehicle history and summary page.
@PowerAppsTutorial2 жыл бұрын
You bet! Thanks so much for watching and commenting!
@eyoborelvis8224 Жыл бұрын
Wow, this is so great
@PowerAppsTutorial Жыл бұрын
My pleasure!😅
@basehumax2 жыл бұрын
Thanks Darren
@PowerAppsTutorial2 жыл бұрын
You're welcome! Thanks for viewing! 😊👍
@basehumax2 жыл бұрын
Darren please add fuction to print the invoice at end of sale and a way we can see vehicle history and reports, we really appreciated your help your one in million
@PowerAppsTutorial2 жыл бұрын
Oh yeah! I talked to my client I'm doing this for. He wants all of that. Tons more to come! Thanks again!
@MicheledoesLife2 жыл бұрын
I am having a issue. At 9:19 when you do the label for the vehicle title (you call it car I do vehicle) it is telling me there is no data. What am I doing wrong? On the View and Edit Customer Screen I show the vehicles under that person. If you can point me in the right direction I would appreciate it!
@PowerAppsTutorial2 жыл бұрын
Take a look at the 7:35 mark all the way up to the 9 minute mark. I talk about how we pass in the customer and car record. Then I actually click on that button that pass it in. If you don't click on that button which passes it in, then the cart screen won't have that data. Does that make sense?
@ChauNguyen-mg1oc2 жыл бұрын
Hi Darren, Thanks for this tutorial. How do you get ID from one of the three drop-down boxes for JobType which is returned "Result" field? Here is what you used in the Patch function when the user clicks on the plus icon to add a new JobType: Patch( tblOrderJobs, Defaults(tblOrderJobs), { OrderID: _order.ID, JobTypeID: ddlOrderEdit_JobType.Selected.ID // There is only Result field for this drop-down? } ); Thanks, Vu
@PowerAppsTutorial2 жыл бұрын
Here is the items property for that 3rd drop down for "Job Sub Type". I hope that helps! If not, let me know!😀👍 Sort( Filter( tblJobTypes, JobTypeText = ddlSalesEdit_JobType.SelectedText.Value ), JobSubType )
@ChauNguyen-mg1oc2 жыл бұрын
@@PowerAppsTutorial Hi Darren, Thanks for that. I bought your template kit so I was able to follow your video step by step. However when I tried to implement the logic for the "Plus" icon for adding a new Job Type I got the error in the following codes: Patch( tblOrderJobs, Defaults(tblOrderJobs), { OrderID: _order.ID, JobTypeID: ddlOrderEdit_JobType.Selected.ID // There is only Result field for this drop-down? Where this ID comes from? } ); Thanks, Vu
@ChauNguyen-mg1oc2 жыл бұрын
Please ignore it. I figured it out. I should not use the Distinct function for the third drop-down. Really appreciate your quick help.