Excel Pump Animation

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ก.พ. 2025
  • A simple pump animation in excel.
    docs.google.co...

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

  • @cemcemre6371
    @cemcemre6371 4 ปีที่แล้ว

    Perfect. Thanks for your video

  • @michal6135
    @michal6135 7 ปีที่แล้ว +6

    where is an animation in this? u just change the color of square by clicking a button with an associated action. That's not an animation.

    • @jmatis3333
      @jmatis3333 7 ปีที่แล้ว

      Agreed, this is not really an animation... to animate this, create a rectangle on a sheet (I used sheet9) and give it a gradient pattern. I set the gradient positions to 2 and 3 % initially, and gave the first gradient a white color and the second a dark blue to look like water...I used the following code which you might have to adjust to your needs:Sub fillRectangle()
      With Sheet9.Shapes("Rectangle 1") For i = .Fill.GradientStops(1).Position To 0.02 Step -0.01 .Fill.GradientStops(1).Position = .Fill.GradientStops(1).Position - 0.01
      .Fill.GradientStops(2).Position = .Fill.GradientStops(2).Position - 0.01
      DoEvents
      Next i
      End With
      End Sub
      Sub emptyRectangle()
      With Sheet9.Shapes("Rectangle 1")
      For i = .Fill.GradientStops(1).Position To 0.98 Step 0.01
      .Fill.GradientStops(1).Position = .Fill.GradientStops(1).Position + 0.01
      .Fill.GradientStops(2).Position = .Fill.GradientStops(2).Position + 0.01
      DoEvents
      Next i
      End With
      End Sub

  • @kartikpahwa2674
    @kartikpahwa2674 4 ปีที่แล้ว

    Woah

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

    how do you get the developer add on. i cant find it under the options seting you referd to

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

      You have to toggle it on in the options.
      Am I too late?

    • @DaninArmy
      @DaninArmy 2 ปีที่แล้ว

      @@kevinogden2531 no you’re not

  • @ДмитрийСтатченко
    @ДмитрийСтатченко 3 ปีที่แล้ว

    Super. I am finding