add a date in a row from row above

G

Guest

Hi

I would like to add a date from the row/cell above (in col 4) given that the
cell I want to add the date to in col 4 is empty. This should continue to
execute as long as column 5 contains anything/is not blank.

I tried below syntax, but it returned an error-message
SUB Test ()
Dim r As Range

For Each r In Worksheets("rådata").Range("G1:G10000")
If IsEmpty(r.Value) Then
Exit For
End If
x = 4
If (Cells(x, 4)).Value = " " Then
Cells(x, 4).Value = Cells(x - 1, 4).Value

x = x + 1
Loop
Next

End Sub
 
B

Bob Phillips

Sub Test()
Dim r As Range

For Each r In Worksheets("rådata").Range("G1:G10000")
If Not IsEmpty(r.Value) Then
If r.Offset(0, -4).Value = "" Then
r.Offset(0, -4).Value = r.Offset(-1, -4).Value
End If
End If
Next

End Sub


--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top