03/10/2008, 10:05
|
| | | Fecha de Ingreso: julio-2006 Ubicación: Lima, Peru
Mensajes: 708
Antigüedad: 18 años, 6 meses Puntos: 18 | |
Respuesta: Multiplicador en VBA Excell Sub adgasd()
Dim celda As Range
Dim total as double
total = 1
For Each celda In ActiveSheet.Range("b1:b15")
total = total * celda
Next
MsgBox total
End Sub
Abraham |