Ampliar fórmula en vba de excel
Tengo esta fórmula en la que tu me ayudaste, que dice:
Si G = PAGO y H = TRANSFERENCIA entonces copia en el libro AGOSTO en la hoja TRANSFERECIA
If Not Intersect(Target, Range("G:H")) Is Nothing Then If Target.Count > 1 Then Exit Sub If UCase(Cells(Target.Row, "G")) = "PAGO" And _ UCase(Cells(Target.Row, "H")) = "TRANSFERENCIA" Then ' Application.ScreenUpdating = False Set l2 = Workbooks("FACT CANC AGOSTO 2015.xlsm") Set h2 = l2.Sheets("TRANSFERENCIA") u = h2.Range("D" & Rows.Count).End(xlUp).Row + 1 Range("B" & Target.Row & ":F" & Target.Row).Copy h2.Range("D" & u).PasteSpecial Paste:=xlPasteValues Application.CutCopyMode = False End If End If
pero necesito ahora adicionarle que si I = SI entonces copie la fila en JULIO en la hoja TRANSFERENCIA
1 Respuesta
Respuesta de Dante Amor
1