Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 109
Default Help with some code please

I am trying to use the code below to check dates in column C, D and E
against a date range in columns I and J and return "Yes" or "No" in column
N.

If C, D and E all contain dates it works fine, but there are some blank
cells and cells containing the word "Error".

Is there some way of checking whether there is a date in the cell before
getting the result?

For the cells containing "Error" I would like "Error" displayed in column N.

Thanks in advance.

Gareth

Sub CheckDateRange()
Application.ScreenUpdating = False
With Worksheets("Sheet1")
Set rng = .Range("C2:C" & Range("A" & Rows.Count).End(xlUp).Row)
For Each cell In rng
If cell.Value cell.Offset(0, 7).Value Or cell.Offset(0, 1).Value <
cell.Offset(0, 6).Value Or _
cell.Offset(0, 2).Value < cell.Offset(0, 6).Value Then
cell.Offset(0, 11).Value = "Yes"
Else
cell.Offset(0, 11).Value = "No"
End If
Next cell
End With
Application.ScreenUpdating = True
End Sub





  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 109
Default Help with some code please

Not sure how to use these function's in my code, any help gratefully
received.

Gareth

"Orlando Magalhães Filho" wrote in message
...
Hi Gareth,

Did you already try to use IsDate() and IsError() function?


HTH

---
Orlando Magalhães Filho

(So that you get best and rapid solution and all may benefit from the
discussion, please reply within the newsgroup, not in email)


"Gareth" escreveu na mensagem
...
I am trying to use the code below to check dates in column C, D and E
against a date range in columns I and J and return "Yes" or "No" in

column
N.

If C, D and E all contain dates it works fine, but there are some blank
cells and cells containing the word "Error".

Is there some way of checking whether there is a date in the cell before
getting the result?

For the cells containing "Error" I would like "Error" displayed in

column
N.

Thanks in advance.

Gareth

Sub CheckDateRange()
Application.ScreenUpdating = False
With Worksheets("Sheet1")
Set rng = .Range("C2:C" & Range("A" & Rows.Count).End(xlUp).Row)
For Each cell In rng
If cell.Value cell.Offset(0, 7).Value Or cell.Offset(0, 1).Value <
cell.Offset(0, 6).Value Or _
cell.Offset(0, 2).Value < cell.Offset(0, 6).Value Then
cell.Offset(0, 11).Value = "Yes"
Else
cell.Offset(0, 11).Value = "No"
End If
Next cell
End With
Application.ScreenUpdating = True
End Sub









  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35
Default Help with some code please

See this:

Sub CheckDateRange()
Application.ScreenUpdating = False
With Worksheets("Sheet1")
Set rng = .Range("C2:C" & Range("A" & Rows.Count).End(xlUp).Row)
For Each cell In rng
If IsError(cell.Value) Or Not IsDate(cell.Value) Then
cell.Offset(0, 11).Value = IIf(IsError(cell.Value), "Error", "")
Else
If cell.Value cell.Offset(0, 7).Value Or cell.Offset(0,
1).Value < cell.Offset(0, 6).Value Or _
cell.Offset(0, 2).Value < cell.Offset(0, 6).Value Then
cell.Offset(0, 11).Value = "Yes"
Else
cell.Offset(0, 11).Value = "No"
End If
End If
Next cell
End With
Application.ScreenUpdating = True
End Sub



"Gareth" escreveu na mensagem
...
Not sure how to use these function's in my code, any help gratefully
received.

Gareth

"Orlando Magalhães Filho" wrote in message
...
Hi Gareth,

Did you already try to use IsDate() and IsError() function?


HTH

---
Orlando Magalhães Filho

(So that you get best and rapid solution and all may benefit from the
discussion, please reply within the newsgroup, not in email)


"Gareth" escreveu na mensagem
...
I am trying to use the code below to check dates in column C, D and E
against a date range in columns I and J and return "Yes" or "No" in

column
N.

If C, D and E all contain dates it works fine, but there are some

blank
cells and cells containing the word "Error".

Is there some way of checking whether there is a date in the cell

before
getting the result?

For the cells containing "Error" I would like "Error" displayed in

column
N.

Thanks in advance.

Gareth

Sub CheckDateRange()
Application.ScreenUpdating = False
With Worksheets("Sheet1")
Set rng = .Range("C2:C" & Range("A" & Rows.Count).End(xlUp).Row)
For Each cell In rng
If cell.Value cell.Offset(0, 7).Value Or cell.Offset(0, 1).Value

<
cell.Offset(0, 6).Value Or _
cell.Offset(0, 2).Value < cell.Offset(0, 6).Value Then
cell.Offset(0, 11).Value = "Yes"
Else
cell.Offset(0, 11).Value = "No"
End If
Next cell
End With
Application.ScreenUpdating = True
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
split post code (zip code) out of cell that includes full address Concord Excel Discussion (Misc queries) 4 October 15th 09 06:59 PM
Code to conditional format all black after date specified in code? wx4usa Excel Discussion (Misc queries) 3 December 26th 08 07:06 PM
Drop Down/List w/Code and Definition, only code entered when selec Spiritdancer Excel Worksheet Functions 2 November 2nd 07 03:57 AM
Convert a Number Code to a Text Code Traye Excel Discussion (Misc queries) 3 April 6th 07 09:54 PM
copying vba code to a standard code module 1vagrowr Excel Discussion (Misc queries) 2 November 23rd 05 04:00 PM


All times are GMT +1. The time now is 09:02 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"