Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() -- Many Thanks HelplessIdiot |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
To expand this as the question was poorly put
I have a spreadsheet with multiple worksheets, and am trying to count entries in a given month that were completed after an agreed completion date. I am starting with one of the sheets, but cannot find a function that will allow me to count all 'January' entries. They all have a 'Date Raised' entry in UK format. i.e 12-Jan-09 from 12/01/09. My current failing array formula is as follows =SUM(IF('Closed RFD Log'!E93:E400=MONTH(1),(IF('Closed RFD Log'!I93:I400="Funded",IF('Closed RFD Log'!N93:N400'Closed RFD Log'!P93:P400,1,0))))) -- Many Thanks HelplessIdiot "HelplessIdiot" wrote: -- Many Thanks HelplessIdiot |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
HelplessIdiot wrote:
To expand this as the question was poorly put I have a spreadsheet with multiple worksheets, and am trying to count entries in a given month that were completed after an agreed completion date. I am starting with one of the sheets, but cannot find a function that will allow me to count all 'January' entries. They all have a 'Date Raised' entry in UK format. i.e 12-Jan-09 from 12/01/09. My current failing array formula is as follows =SUM(IF('Closed RFD Log'!E93:E400=MONTH(1),(IF('Closed RFD Log'!I93:I400="Funded",IF('Closed RFD Log'!N93:N400'Closed RFD Log'!P93:P400,1,0))))) The month test would go something like this: IF(MONTH(cell:range)=1,... |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Glenn wrote:
HelplessIdiot wrote: To expand this as the question was poorly put I have a spreadsheet with multiple worksheets, and am trying to count entries in a given month that were completed after an agreed completion date. I am starting with one of the sheets, but cannot find a function that will allow me to count all 'January' entries. They all have a 'Date Raised' entry in UK format. i.e 12-Jan-09 from 12/01/09. My current failing array formula is as follows =SUM(IF('Closed RFD Log'!E93:E400=MONTH(1),(IF('Closed RFD Log'!I93:I400="Funded",IF('Closed RFD Log'!N93:N400'Closed RFD Log'!P93:P400,1,0))))) The month test would go something like this: IF(MONTH(cell:range)=1,... I guess that could have been confusing... =SUM(IF(MONTH('Closed RFD Log'!E93:E400)=1, (IF('Closed RFD Log'!I93:I400="Funded", IF('Closed RFD Log'!N93:N400'Closed RFD Log'!P93:P400,1,0))))) |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() -- Many Thanks HelplessIdiot "Glenn" wrote: Glenn wrote: HelplessIdiot wrote: To expand this as the question was poorly put I have a spreadsheet with multiple worksheets, and am trying to count entries in a given month that were completed after an agreed completion date. I am starting with one of the sheets, but cannot find a function that will allow me to count all 'January' entries. They all have a 'Date Raised' entry in UK format. i.e 12-Jan-09 from 12/01/09. My current failing array formula is as follows =SUM(IF('Closed RFD Log'!E93:E400=MONTH(1),(IF('Closed RFD Log'!I93:I400="Funded",IF('Closed RFD Log'!N93:N400'Closed RFD Log'!P93:P400,1,0))))) The month test would go something like this: IF(MONTH(cell:range)=1,... I guess that could have been confusing... =SUM(IF(MONTH('Closed RFD Log'!E93:E400)=1, (IF('Closed RFD Log'!I93:I400="Funded", IF('Closed RFD Log'!N93:N400'Closed RFD Log'!P93:P400,1,0))))) Glen Thanks very much - that did the trick Many Regards Ed |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I select specific cells to be my tab stops? | Excel Worksheet Functions | |||
How do I select cells within a column that contain a specific word | Excel Worksheet Functions | |||
select cells that sum up to a specific value | Excel Discussion (Misc queries) | |||
Excel 2003 is missing toolbar button select visible cells | Excel Worksheet Functions | |||
Excel 2003 is not letting me select all cells | New Users to Excel |