Tips VBA en Excel Porcentaje de participación ListBox

Поділитися
Вставка
  • Опубліковано 3 січ 2025

КОМЕНТАРІ •

  • @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

  • @analitycs1303
    @analitycs1303 Рік тому +1

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

  • @ingjuanpablofrancolozada6303
    @ingjuanpablofrancolozada6303 2 роки тому

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