Ver Mensaje Individual
  #3 (permalink)  
Antiguo 09/05/2010, 15:55
nauta85
 
Fecha de Ingreso: mayo-2010
Mensajes: 18
Antigüedad: 14 años
Puntos: 0
Respuesta: ayuda para macro excel vba

HOLA YENAY MUCHAS GRACIAS POR TU COMENTARIO YA INTENTE APLICAR EL COMANDO QUE ME DICES PERO NO ME FUNCIONA, O NO LO ESTOY APLICANDO BIEN, AQUI UN POCO DE LO QUE TENGO EN DONDE QUIERO QUE ME APREZCA UN NUMERO EN DONDE APLICO EL COMANDO VAL HABER SI ME PUEDES AYUDAR.

Private Sub TextBox6_Change()
Range("F7").Select
With Selection.Font
.Name = "Candara"
.Size = 8
.TintAndShade = 0
.ThemeFont = xlThemeFontNone
End With
With Selection
.HorizontalAlignment = xlRight
.VerticalAlignment = xlCenter
End With
With Selection.Borders(xlEdgeLeft)
.LineStyle = xlContinuous
.ColorIndex = xlAutomatic
.TintAndShade = 0
.Weight = xlThin
End With
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.ColorIndex = xlAutomatic
.TintAndShade = 0
.Weight = xlThin
End With
ActiveCell.FormulaR1C1 = TextBox6
Rem aqui voy a poner la multiplicacion de la cantidad por el p.u.
TextBox7 = Val(TextBox5) * Val(TextBox6)
End Sub

Última edición por nauta85; 09/05/2010 a las 16:24