I'm trying to get a VBA coding that will search for cells formatted as a date, and for all date formats, again search for particular text above it and copy it to the row for which the date cell is.
To illustrate, below is a sample of my data that I'm attempting to address. For any cell in column C that has is formatted as a date, I'm hoping to have the code find the Customer number (cell C2) and customer name (D2) and copy to columns A and B on the applicable row. The problem comes in because many of the customers in my data have more than one voucher, so I can't hard code it to simply be two rows above the cell that has a date. I hope I'm making sense!
Customer account Name
1001010 Internal : Sales Admin (9900)
Date Voucher
12/7/2011 CINV00000980
1/26/2012 CINV00001011
2/9/2012 CINV00001050
3/6/2012 CINV00002003
3/13/2012 CINV00002067
I'm trying to use nested Do loops right now (see below), and obviously it isn't working. The code is running, but no copying/pasting is happening.
Sub ARAging()
Dim row As Integer
row = 2
finalrow = ActiveSheet.UsedRange.Rows.Count
Do
If Range(Cells(row, 3), Cells(row, 3)).NumberFormat = "dd/mm/yyyy" Then
Do
If Range(Cells(row, 3), Cells(row, 3)).Value = "Customer account" Then
Range(Cells(row - 1, 3), Cells(row - 1, 4)).Select
With Selection.Copy
End With
End If
row = row - 1
Loop Until Range(Cells(row, 3), Cells(row, 3)).Value = "Customer account"
Range(Cells(row, 1), Cells(row, 2)).Select
With Selection.Paste
End With
End If
row = row + 1
Loop Until row = finalrow
End Sub
Any help would be appreciated!