Power Apps for Project Management | Part 2: Edit Forms

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 พ.ค. 2024
  • This is Part 2 in our video series of building project management app using Power Apps. By the end of this video, you’ll have learned:
    📝 How to edit/modify existing records (project tasks)
    ➕ How to add new tasks
    📋 Understanding the Edit Form and its usage
    🌐 How to create global variables
    📅 How to auto-calculate task due dates based on Duration and Start Date
    🎨 How to customize controls inside an edit form
    🚀 How to publish your Power Apps
    Stay tuned for our next video, where we’ll explore filtering and searching in Power Apps.
    📝 *Table of Contents:*
    0:00 - Introduction
    1:46 - Recap of Part 1
    5:10 - Understanding the Edit Form and its usage
    12:20 - Creating global variables
    44:20 - Customize controls inside an edit form
    55:10 - Auto-calculate task due dates based on Duration and Start Date
    1:00:00 - Publish your Power Apps
    1:04:00 - Conclusion and next steps
    #powerapps #editform #projectmanagement #sharepoint #ui #citizendeveloper #citizendevelopment #powerplatform
    Here are some helpful resources to deepen your understanding:
    1. learn.microsoft.com/en-us/pow...
    2. learn.microsoft.com/en-us/pow...
    3. www.matthewdevaney.com/how-to...
    4. www.matthewdevaney.com/everyt...
    If you found this video helpful, please don't forget to give it a thumbs up 👍 and subscribe to my channel for more Power Apps and citizen development tutorials. Your support helps me create more content for you.
    If you have any questions or comments, feel free to leave them below. I love hearing from you and your feedback helps me improve my content.
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 7

  • @RafsanHuseynov
    @RafsanHuseynov  11 วันที่ผ่านมา

    Code Snippets:
    //
    With(
    {
    varStartDate: dpStartDate.SelectedDate,
    varDuration: Value(txtinpDuration.Text)
    },
    DateAdd(
    varStartDate,
    Value(varDuration) + RoundDown(
    (Weekday(
    varStartDate,
    StartOfWeek.Monday
    ) + Value(varDuration) - 1) / 5,
    0
    ) * 2,
    TimeUnit.Days
    ) )
    Change the following parts:
    1. dpStartDate - replace this with your date picker name
    2. txtinpDuration - replace this with your text input control name.

  • @roma9026
    @roma9026 10 วันที่ผ่านมา

    Love the content. Thanks for sharing.

  • @misirtadelle3627
    @misirtadelle3627 9 วันที่ผ่านมา

    Thank you again, I can't wait for next step

    • @RafsanHuseynov
      @RafsanHuseynov  9 วันที่ผ่านมา +1

      Thanks for your feedback. Next is going to be about search and filter in power apps.

  • @user-wj7ru4ro9o
    @user-wj7ru4ro9o 5 วันที่ผ่านมา

    Possible to share your application

    • @RafsanHuseynov
      @RafsanHuseynov  4 วันที่ผ่านมา

      It’s not finished yet. We have a few more sessions remaining. Once they are all completed, I will compile them into a solution and explore methods to share it with the community. Thanks for your patience!