Posts by Roberto C. Borges Jr. • 1 point
2 posts
-
0
votes1
answer23
viewsA: Macro and VBA that deletes the oldest records, if they are the same value
Sub removerAntigo() Dim UltimaLinha As Long UltimaLinha = ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row Dim i As Long For i = 2 To UltimaLinha If Cells(i, 1).Value = "" Then Exit Sub If Cells(i, 3)…
-
0
votes1
answer23
viewsQ: Macro and VBA that deletes the oldest records, if they are the same value
Talk, guys, I’m new here and I’m desperate for some help. I need you to delete the oldest records from a list of multiple trips, keeping only the latest of them. The print below makes it clearer. In…