Tips VBA en Excel Porcentaje de participación ListBox

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

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

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

    hay una manera mas facil de realizar la autosuma mira alt = y enter
    pero el video esta super.

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

    Muchas gracias muy bueno...saluditos...!!!!

  • @EcoDev-Solutions
    @EcoDev-Solutions  2 ปีที่แล้ว

    Código del calculo y su porcentaje de participación
    Sub Calcular()
    Dim Suma As Double
    Dim I As Single
    Dim Por As Double
    Dim SP As Double
    Suma = 0
    'Totales
    With Me.ListBox1
    For I = 0 To .ListCount - 1

    Suma = Suma + .List(I, 1)

    Next I
    End With
    Me.LblTotal.Caption = Suma

    'Porcentaje de participacion
    With Me.ListBox1
    For I = 0 To .ListCount - 1

    Por = .List(I, 1) / Suma
    SP = SP + Por
    .List(I, 2) = Format(Por, "0.00%")

    Next I

    End With
    MsgBox Format(SP, "0.00%")
    End Sub