Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/10/2008, 10:05
Avatar de abrahamvj
abrahamvj
 
Fecha de Ingreso: julio-2006
Ubicación: Lima, Peru
Mensajes: 708
Antigüedad: 17 años, 9 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