Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
What formula can be used to select data between two dates (ie: 01Oct04 and
09Oct04), and if the information falls within that range, then post it to another column, if not, then do nothing "0". Thanks. |
#2
![]() |
|||
|
|||
![]()
To copy the data from column B to column C, with the date in column A, put
this formula in C2 and copy down as far as needed: =IF(AND(A2=DATE(2004,10,1),A2<=DATE(2004,10,9)),A 2,0) It may be easier to put the starting and ending dates in two cells, e.g. C1 and D1. Then the formula is =IF(AND(A2=$C$1,A2<=$D$1),A2,0) On Mon, 3 Jan 2005 08:33:04 -0800, Porous Metals Limited <Porous Metals wrote: What formula can be used to select data between two dates (ie: 01Oct04 and 09Oct04), and if the information falls within that range, then post it to another column, if not, then do nothing "0". Thanks. |
#3
![]() |
|||
|
|||
![]()
Assuming ColumnA = Date to evaluate and ColumnB = Information to be posted
In the "other" column: =IF(AND(A2DATEVALUE("10/1/2004"), A2< DATEVALUE("10/10/2004")),B2,0) -- George Nicholson Remove 'Junk' from return address. "Porous Metals Limited" <Porous Metals wrote in message ... What formula can be used to select data between two dates (ie: 01Oct04 and 09Oct04), and if the information falls within that range, then post it to another column, if not, then do nothing "0". Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Dates in Formula | Excel Discussion (Misc queries) | |||
How do I format dates accessed by a formula | Excel Discussion (Misc queries) | |||
Logical formula with dates | Excel Worksheet Functions | |||
Logical formula with dates | Excel Worksheet Functions | |||
I there an easy way to find out if any formula reference a cell? | New Users to Excel |