Segue nova versão do código:
Sub AplicarCodBaixa()
Dim UltLinha As Long
Dim i As Long
Dim CodBaixa As Long
UltLinha = Cells(Cells.Rows.Count, 1).End(xlUp).Row
i = UltLinha
Do While i > 2
If Cells(i, 1).Value = "Código Baixa:" Then
CodBaixa = Cells(i, 2).Value
i = i - 1
Do While Cells(i, 4).Value = "Pagar" Or Cells(i, 4).Value = "Receber"
Cells(i, 3).Value = CodBaixa
i = i - 1
Loop
End If
i = i - 1
Loop
MsgBox "Fim de Execução", vbInformation
End Sub
Abraço
Postado : 11/09/2020 11:59 am