Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
One way, using a worksheet formula method:
Assume your date is in A1: =--AND(A1=DATEVALUE("6/30/2002"),A1<=DATEVALUE("7/1/2003")) AND returns a TRUE or FALSE, the - converts the TRUE/FALSE to -1/0, a second - converts -1/0 to 1/0. Programming solution: Dim myDate As Date Dim result As Integer myDate = Range("A1").Value result = -(myDate = DateValue("6/30/2002") And _ myDate <= DateValue("7/1/2003")) VBA's True is equivalent to -1 so only one unary minus (-) is needed. In article , "matt wolfe chazin" wrote: i want to know the syntax for an if statement i want the if statment to generate a "1", if the dates fall within the range 07/01/2002 - 06/30/2003 , if not, then "0" thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
IF statement inside a SUMIF statement.... or alternative method | Excel Worksheet Functions | |||
Reconcile Bank statement & Credit card statement & accounting data | Excel Worksheet Functions | |||
Embedding an OR statement in an IF statement efficiently | Excel Discussion (Misc queries) | |||
Can an If statement answer an If statement? | Excel Discussion (Misc queries) | |||
appending and IF statement to an existing IF statement | Excel Worksheet Functions |