Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a worksheet *(sheeta) with a list of activities with "Open" and
"Closed" dates. In worksheet B, I have A2:A50 I have A B 1 =TODAY()-7 =COUNTIF('sheeta'!A1:A50,"=" &'sheetb'!A1) 2 =TODAY()-14 ={number of occurances between A2 and A1} 3 =TODAY()-21 ={number of occurances between A3 and A2} 4 etc.... In Colum B1, I do a COUNTIF('sheeta'!A1:A50,"=" &'sheetb'!A1) In B2:B50, I want to do =COUNTIF('sheeta'!A1:A50,"=" &'sheetb'!A2 AND "<" &'sheetb'!A1) THe idea is to found out, by week (each day the start date will change to TODAY()-7.) Each day. Any ideas? KSL |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
B2: =COUNTIF('sheeta'!A1:A50,"=" &'sheetb'!A2)-SUM($B$1:$B1)
and copy down -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Leonhardtk" wrote in message ... I have a worksheet *(sheeta) with a list of activities with "Open" and "Closed" dates. In worksheet B, I have A2:A50 I have A B 1 =TODAY()-7 =COUNTIF('sheeta'!A1:A50,"=" &'sheetb'!A1) 2 =TODAY()-14 ={number of occurances between A2 and A1} 3 =TODAY()-21 ={number of occurances between A3 and A2} 4 etc.... In Colum B1, I do a COUNTIF('sheeta'!A1:A50,"=" &'sheetb'!A1) In B2:B50, I want to do =COUNTIF('sheeta'!A1:A50,"=" &'sheetb'!A2 AND "<" &'sheetb'!A1) THe idea is to found out, by week (each day the start date will change to TODAY()-7.) Each day. Any ideas? KSL |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try:
=COUNTIF(sheeta!A1:A50,"=" &sheetb!A2)- COUNTIF(sheeta!A1:A50,"=" &sheetb!A1) "Leonhardtk" wrote: I have a worksheet *(sheeta) with a list of activities with "Open" and "Closed" dates. In worksheet B, I have A2:A50 I have A B 1 =TODAY()-7 =COUNTIF('sheeta'!A1:A50,"=" &'sheetb'!A1) 2 =TODAY()-14 ={number of occurances between A2 and A1} 3 =TODAY()-21 ={number of occurances between A3 and A2} 4 etc.... In Colum B1, I do a COUNTIF('sheeta'!A1:A50,"=" &'sheetb'!A1) In B2:B50, I want to do =COUNTIF('sheeta'!A1:A50,"=" &'sheetb'!A2 AND "<" &'sheetb'!A1) THe idea is to found out, by week (each day the start date will change to TODAY()-7.) Each day. Any ideas? KSL |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Dynamic Ranges with ADO | Excel Discussion (Misc queries) | |||
Dynamic Ranges | Excel Discussion (Misc queries) | |||
Dynamic Date Ranges | Excel Discussion (Misc queries) | |||
COUNTIF criteria using date ranges? | Excel Worksheet Functions | |||
Dynamic Formulas with Dynamic Ranges | Excel Worksheet Functions |