Te anexo la macro
Sub Pegar()
'Por.Dante Amor
Set h = ActiveSheet
'validaciones
If h.ComboBox1.Value = "" Then
MsgBox "Falta el artículo", vbExclamation
Exit Sub
End If
If h.ComboBox2.Value = "" Then
MsgBox "Falta la talla", vbExclamation
Exit Sub
End If
If h.ComboBox3.Value = "" Then
MsgBox "Falta el color", vbExclamation
Exit Sub
End If
fecha = h.Range("B2").Value
If fecha = "" Or Not IsDate(fecha) Then
MsgBox "Falta la fecha", vbExclamation
Exit Sub
End If
Set b = h.Rows(4).Find(fecha, lookat:=xlWhole)
If Not b Is Nothing Then
col = b.Column
Else
MsgBox "No existe la fecha", vbCritical
Exit Sub
End If
Set b = Nothing
'
valor = h.Range("C2").Value
If valor = "" Or Not IsNumeric(valor) Then
MsgBox "Falta el valor de producción"
Exit Sub
End If
'
'Busca
existe_art = False
Set r = h.Columns("A")
Set b = r.Find(h.ComboBox1.Value, lookat:=xlWhole)
If Not b Is Nothing Then
celda = b.Address
Do
'detalle
If LCase(h.Cells(b.Row, "B").Value) = LCase(h.ComboBox2.Value) And _
LCase(h.Cells(b.Row, "C").Value) = LCase(h.ComboBox3.Value) Then
existe_art = True
fila = b.Row
h.Cells(fila, col) = valor
MsgBox "Valor actualizado", vbInformation
Exit Do
End If
Set b = r.FindNext(b)
Loop While Not b Is Nothing And b.Address <> celda
End If
If existe_art = False Then
MsgBox "No existe el artículo", vbCritical
End If
End Sub
Sigue las Instrucciones para un botón y ejecutar la macro
- Abre tu libro de Excel
- Para abrir Vba-macros y poder pegar la macro, Presiona Alt + F11
- En el menú elige Insertar / Módulo
- En el panel del lado derecho copia la macro
- Ahora para crear un botón, puedes hacer lo siguiente:
- Inserta una imagen en tu libro, elige del menú Insertar / Imagen / Autoformas
- Elige una imagen y con el Mouse, dentro de tu hoja, presiona click y arrastra el Mouse para hacer grande la imagen.
- Una vez que insertaste la imagen en tu hoja, dale click derecho dentro de la imagen y selecciona: Tamaño y Propiedades. En la ventana que se abre selecciona la pestaña: Propiedades. Desmarca la opción “Imprimir Objeto”. Presiona “Cerrar”
- Vuelve a presionar click derecho dentro de la imagen y ahora selecciona: Asignar macro. Selecciona: Pegar
- Aceptar.
- Para ejecutarla dale click a la imagen.
.
'S aludos. Dante Amor. Recuerda valorar la respuesta. G racias
.
Avísame cualquier duda
.