View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Franz Verga Franz Verga is offline
external usenet poster
 
Posts: 459
Default Using DateAdd Function with cell values

loren.pottinger wrote:
Both F7 and H7 contain a date yet this sub does not execute the
statements after Then.................Please help.

Sub GetAmOrDep()

Dim TestDate As Date
TestDate = DateAdd("m", Range("F7").Value, Range("H7").Value)

If TestDate < Range("I7").Value Then
Range("K7").Select
Selection.Copy
Range("M7").Select
ActiveSheet.Paste
End If
End Sub



Hi Loren,

from msdn
(http://msdn.microsoft.com/library/de...a814a88d.asp):

[cit]

DateAdd(interval, number, date)

Arguments

interval
Required. String expression that is the interval you want to add. See
Settings section for values.

number
Required. Numeric expression that is the number of interval you want to
add. The numeric expression can either be positive, for dates in the future,
or negative, for dates in the past.

date

Required. Variant or literal representing the date to which interval is
added.



Settings

The interval argument can have the following values:

Setting Description
yyyy
Year

q
Quarter

m
Month

y
Day of year

d
Day

w
Weekday

ww
Week of year

h
Hour

n
Minute

s
Second



[end cit]

This means that you cannot have dates in F7 and H7, but you need a number
(of month in your case, cause you used interval = "m") in F7 and a date in
H7.

--
Hope I helped you.

Thanks in advance for your feedback.

Ciao

Franz Verga from Italy