Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 78
Default add a date in a row from row above

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


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,593
Default add a date in a row from row above

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)

"sverre" wrote in message
...
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




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Concatenate including a date so that the date appears as a date Zembu Excel Worksheet Functions 2 January 6th 10 06:09 PM
date in Cell to change colors if the date is beyond today's date Pete Elbert Excel Discussion (Misc queries) 2 June 6th 09 06:31 AM
Report Date - Date Recv = Days Late, but how to rid completed date MS Questionnairess Excel Worksheet Functions 1 January 24th 07 11:05 PM
copy date based on date -refer to date range mindpeace[_4_] Excel Programming 1 June 3rd 06 01:30 PM
Date updates from worksheet to chart & changes date to a date series! Help!! Jayjg Charts and Charting in Excel 2 January 22nd 05 03:00 PM


All times are GMT +1. The time now is 02:55 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"