Building a Progress Bar in Power Apps

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ธ.ค. 2024

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

  • @christianberger6390
    @christianberger6390 5 วันที่ผ่านมา +1

    Très intéressant

  • @CigarDoug
    @CigarDoug 2 หลายเดือนก่อน +1

    Thank you for this video. My math is a little more complicated, but I was able to apply your solution easily and just change the formula. I like the container within a container look, the final option.

  • @michelhegeraat5430
    @michelhegeraat5430 ปีที่แล้ว +1

    My progress bars are usually made from a slider. Nice to share your ideas.

    • @DamoBird365
      @DamoBird365  ปีที่แล้ว

      Cheers Michael, hopefully something new to try out 👍

  • @franknielsen3219
    @franknielsen3219 ปีที่แล้ว +1

    Very cool THX. I allways watch your Power Automate videos because they are great, so keep up the good work 👌👌

    • @DamoBird365
      @DamoBird365  ปีที่แล้ว +1

      Cheers Frank 👍 appreciated

  •  ปีที่แล้ว +1

    Good one Damien. 👍💡 Love PowerApps, you can build the same thing in so many ways. SVG images can work for Progress Bar and the good old HTML Text Control can as well. Keep those videos coming. 🎥📺

  • @marina_peixoto
    @marina_peixoto ปีที่แล้ว

    Thank you so much! Your video made my day!

    • @DamoBird365
      @DamoBird365  ปีที่แล้ว

      I would love to see what you came up with 👍

  • @basehumax
    @basehumax ปีที่แล้ว +1

    Thanks Damien

  • @inspectorlife85
    @inspectorlife85 ปีที่แล้ว +1

    Like this one! Thanks for these video and tutorials.
    Can you make one on taking an existing Sharepoint List (lots of data columns, use inputs information/tracks start for each row) and make it automatically move to an Excel File for a single person to review? Including a list from TEAMS?

    • @DamoBird365
      @DamoBird365  ปีที่แล้ว

      Let me know if this helps th-cam.com/video/RB_ySjhm9Sg/w-d-xo.html

  • @lxz86
    @lxz86 ปีที่แล้ว +1

    thanks Damo, this is so much useful, but these five states require dependency logic, and the next step can only be taken after initiation. How should this be implemented?

    • @DamoBird365
      @DamoBird365  ปีที่แล้ว +1

      I’ve used a gallery to demonstrate updating the Boolean values via oncheck but you could base it on a table/list being updated or maybe navigation between screens via an onselect. It really depends on your use case and why the progress bar should update.

  • @imran002ali
    @imran002ali 11 หลายเดือนก่อน +1

    Hi @DamoBird365, very nice and great video, thank you!! 👍

    • @DamoBird365
      @DamoBird365  11 หลายเดือนก่อน

      Thank Imran.

  • @CarlosAlmeida-s3m
    @CarlosAlmeida-s3m ปีที่แล้ว +1

    Hello @DamoBird365,
    Is there any way of getting data of a ".xls" file in order to make a flow automation?
    either convert .xls to csv or .xlsx?
    I would like to know if this is possible only by using power automate flows, and no PADesktop?

    • @DamoBird365
      @DamoBird365  ปีที่แล้ว +1

      I’ve looked into this in the past, I don’t believe it is possible. There are 3rd party connectors, for instance encodian that can handle xls to xlsx. If you find a way, please let me know 😉

  • @jasonralston6610
    @jasonralston6610 5 หลายเดือนก่อน

    Nice work, I think it's crazy that you have to use a patch statement to update a collection value in application that you have full control. you would think you could use set(). Also you seleted the first three items in your control? Please tell me that isn't because you can only leverage the check and uncheck properties for control state? If that really is the case once again wouldn't just use a if(), case() switch() or whatever PowerApps call it?

  • @aceco4431
    @aceco4431 5 หลายเดือนก่อน

    Good day! Can this be done in cases where there are separate activities on a single canvas app? If so, how would we do it? Thank you

    • @DamoBird365
      @DamoBird365  5 หลายเดือนก่อน

      @@aceco4431 do you mean separate progress bars on separate processes? I don’t see why not. You just need to maintain a separate variable.

  • @shashankgwl
    @shashankgwl 10 หลายเดือนก่อน +1

    So the formula for calculation of completion will show 60% if "Monitoring , Execution and Closure" alone are ticked?

    • @DamoBird365
      @DamoBird365  10 หลายเดือนก่อน +1

      Correct, but hopefully you can apply this to your own logic.

  • @dpibob
    @dpibob 2 หลายเดือนก่อน

    I am getting an error that says "invalid operation:division by zero." Do you know how I could fix this?

    • @CigarDoug
      @CigarDoug 2 หลายเดือนก่อน

      Somewhere in your code, like the width of one of the controls, you are dividing. So, if you are dividing a / b, and b is empty or null or blank, it's 0. So it's a division by zero error. Do a search for the division symbol "/" and check the value to the right of the "/". More than likely, it's a collection that's not populated, so the COUNT is zero.