Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 16
Default SumProduct with Date Range and One Condition that is Text

Hello to all of you Excel Experts,

HELP, pretty please.

I have 2 formulas I am trying to combine. I had to break them out, to try
and troubleshoot my initial error, #Name?


Both of these formulas worked, but I need them combined. I am pulling from a
different worksheet and working in Excel 2003. I am trying to identify in one
column (Column A) the site visits along with another column (Column E)
looking for a date range of 09/01/08 - 09/30/08. The issue is I have to do a
search because for some reason the names in Column A (Site Visits) were not
picking up when I had the formula combined.

=SUMPRODUCT(--(ISNUMBER(SEARCH('Project KPI Detail'!A15:A35,"Construction
Start"))))

=SUMPRODUCT(--(YEAR('Project KPI
Detail'!$E$16:$E$37)=2008),--(MONTH('Project KPI Detail'!$E$16:$E$37)=9))

Thank you,
The Novice
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default SumProduct with Date Range and One Condition that is Text

Make sure all your ranges have the size


"Iona" wrote:

Hello to all of you Excel Experts,

HELP, pretty please.

I have 2 formulas I am trying to combine. I had to break them out, to try
and troubleshoot my initial error, #Name?


Both of these formulas worked, but I need them combined. I am pulling from a
different worksheet and working in Excel 2003. I am trying to identify in one
column (Column A) the site visits along with another column (Column E)
looking for a date range of 09/01/08 - 09/30/08. The issue is I have to do a
search because for some reason the names in Column A (Site Visits) were not
picking up when I had the formula combined.

=SUMPRODUCT(--(ISNUMBER(SEARCH('Project KPI Detail'!A15:A35,"Construction
Start"))))

=SUMPRODUCT(--(YEAR('Project KPI
Detail'!$E$16:$E$37)=2008),--(MONTH('Project KPI Detail'!$E$16:$E$37)=9))

Thank you,
The Novice

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default SumProduct with Date Range and One Condition that is Text

Make sure all your ranges have the same size

"Teethless mama" wrote:

Make sure all your ranges have the size


"Iona" wrote:

Hello to all of you Excel Experts,

HELP, pretty please.

I have 2 formulas I am trying to combine. I had to break them out, to try
and troubleshoot my initial error, #Name?


Both of these formulas worked, but I need them combined. I am pulling from a
different worksheet and working in Excel 2003. I am trying to identify in one
column (Column A) the site visits along with another column (Column E)
looking for a date range of 09/01/08 - 09/30/08. The issue is I have to do a
search because for some reason the names in Column A (Site Visits) were not
picking up when I had the formula combined.

=SUMPRODUCT(--(ISNUMBER(SEARCH('Project KPI Detail'!A15:A35,"Construction
Start"))))

=SUMPRODUCT(--(YEAR('Project KPI
Detail'!$E$16:$E$37)=2008),--(MONTH('Project KPI Detail'!$E$16:$E$37)=9))

Thank you,
The Novice

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 16
Default SumProduct with Date Range and One Condition that is Text - Urgent

Thanks for the Range check. However, I am still experiencing issues combing
the 2 formulas below as one. Would you be able to assist me on the structure
to make it one formula? I appreciate any help. Also, this is now due this
morning.


=SUMPRODUCT(--(ISNUMBER(SEARCH('Project KPI Detail'!A16:A37,"Construction
Start"))))

=SUMPRODUCT(--(YEAR('Project KPI
Detail'!$E$16:$E$37)=2008),--(MONTH('Project KPI Detail'!$E$16:$E$37)=9))

"Teethless mama" wrote:

Make sure all your ranges have the same size

"Teethless mama" wrote:

Make sure all your ranges have the size


"Iona" wrote:

Hello to all of you Excel Experts,

HELP, pretty please.

I have 2 formulas I am trying to combine. I had to break them out, to try
and troubleshoot my initial error, #Name?


Both of these formulas worked, but I need them combined. I am pulling from a
different worksheet and working in Excel 2003. I am trying to identify in one
column (Column A) the site visits along with another column (Column E)
looking for a date range of 09/01/08 - 09/30/08. The issue is I have to do a
search because for some reason the names in Column A (Site Visits) were not
picking up when I had the formula combined.

=SUMPRODUCT(--(ISNUMBER(SEARCH('Project KPI Detail'!A15:A35,"Construction
Start"))))

=SUMPRODUCT(--(YEAR('Project KPI
Detail'!$E$16:$E$37)=2008),--(MONTH('Project KPI Detail'!$E$16:$E$37)=9))

Thank you,
The Novice

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default SumProduct with Date Range and One Condition that is Text - Urgent

In the SEARCH function I think you have the arguments backwards.

SEARCH syntax (in plain English):

SEARCH("search for what",search where,[optional: start search at character
number])

Try this:

=SUMPRODUCT(--(ISNUMBER(SEARCH("Construction Start",'Project KPI
Detail'!A16:A37))),--(YEAR('Project KPI
Detail'!$E$16:$E$37)=2008),--(MONTH('Project KPI Detail'!$E$16:$E$37)=9))


--
Biff
Microsoft Excel MVP


"Iona" wrote in message
...
Thanks for the Range check. However, I am still experiencing issues
combing
the 2 formulas below as one. Would you be able to assist me on the
structure
to make it one formula? I appreciate any help. Also, this is now due this
morning.


=SUMPRODUCT(--(ISNUMBER(SEARCH('Project KPI Detail'!A16:A37,"Construction
Start"))))

=SUMPRODUCT(--(YEAR('Project KPI
Detail'!$E$16:$E$37)=2008),--(MONTH('Project KPI Detail'!$E$16:$E$37)=9))

"Teethless mama" wrote:

Make sure all your ranges have the same size

"Teethless mama" wrote:

Make sure all your ranges have the size


"Iona" wrote:

Hello to all of you Excel Experts,

HELP, pretty please.

I have 2 formulas I am trying to combine. I had to break them out, to
try
and troubleshoot my initial error, #Name?


Both of these formulas worked, but I need them combined. I am pulling
from a
different worksheet and working in Excel 2003. I am trying to
identify in one
column (Column A) the site visits along with another column (Column
E)
looking for a date range of 09/01/08 - 09/30/08. The issue is I have
to do a
search because for some reason the names in Column A (Site Visits)
were not
picking up when I had the formula combined.

=SUMPRODUCT(--(ISNUMBER(SEARCH('Project KPI
Detail'!A15:A35,"Construction
Start"))))

=SUMPRODUCT(--(YEAR('Project KPI
Detail'!$E$16:$E$37)=2008),--(MONTH('Project KPI
Detail'!$E$16:$E$37)=9))

Thank you,
The Novice



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Formula to total text in range, if true to condition Jayne Mae Excel Worksheet Functions 11 August 21st 08 08:08 PM
Sumif function with a date range condition statement COskibum Excel Discussion (Misc queries) 4 July 24th 08 07:15 PM
condition sumif commands based on date range? joek8724 Excel Discussion (Misc queries) 2 March 23rd 08 05:57 AM
Search for Condition, Text based, Date Range, Occurrences NickNameGoesHere Excel Worksheet Functions 1 March 18th 08 04:11 PM
sumproduct-condition as a range amh Excel Discussion (Misc queries) 3 July 26th 07 05:36 PM


All times are GMT +1. The time now is 02:15 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"