Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,101
Default Sumif with a or condition.

I have the equation below which tallies the number of records that meet the
criteria Server Hardware, Internal Issue and Limited Functionality. This
works great with the following formula:

=SUM(IF(('Total Outages'!R2:R300=C48)*('Total Outages'!Q2:Q300=H2)*('Total
Outages'!S2:S300=C7),1,0))

But I need a formula to include an OR condition to tally the number of
records that are either Server Hardware or Server Software in R2:R300.

C48 = Server Hardware
C49 = Server Software
H2 = Limited Functionality
C7 = Internal Issue

I have tried using a wildcard €˜ser*, no luck, I have tried *OR, no luck,
also tried using SUMPRODUCT no luck.

Any help is appreciated.

Thanks,

Mike

--
Mike
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,047
Default Sumif with a or condition.

what version of MS Excel are you use? 2003 or 2007?

2007 = sumifs

2003 = sumproduct should runs.

hth
--
pleae click yes if it was helpfull
regards from Brazil
Marcelo



"Mike" escreveu:

I have the equation below which tallies the number of records that meet the
criteria Server Hardware, Internal Issue and Limited Functionality. This
works great with the following formula:

=SUM(IF(('Total Outages'!R2:R300=C48)*('Total Outages'!Q2:Q300=H2)*('Total
Outages'!S2:S300=C7),1,0))

But I need a formula to include an OR condition to tally the number of
records that are either Server Hardware or Server Software in R2:R300.

C48 = Server Hardware
C49 = Server Software
H2 = Limited Functionality
C7 = Internal Issue

I have tried using a wildcard €˜ser*, no luck, I have tried *OR, no luck,
also tried using SUMPRODUCT no luck.

Any help is appreciated.

Thanks,

Mike

--
Mike

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,101
Default Sumif with a or condition.

2003...................

How is it written using sumproduct?
--
Mike


"Marcelo" wrote:

what version of MS Excel are you use? 2003 or 2007?

2007 = sumifs

2003 = sumproduct should runs.

hth
--
pleae click yes if it was helpfull
regards from Brazil
Marcelo



"Mike" escreveu:

I have the equation below which tallies the number of records that meet the
criteria Server Hardware, Internal Issue and Limited Functionality. This
works great with the following formula:

=SUM(IF(('Total Outages'!R2:R300=C48)*('Total Outages'!Q2:Q300=H2)*('Total
Outages'!S2:S300=C7),1,0))

But I need a formula to include an OR condition to tally the number of
records that are either Server Hardware or Server Software in R2:R300.

C48 = Server Hardware
C49 = Server Software
H2 = Limited Functionality
C7 = Internal Issue

I have tried using a wildcard €˜ser*, no luck, I have tried *OR, no luck,
also tried using SUMPRODUCT no luck.

Any help is appreciated.

Thanks,

Mike

--
Mike

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Sumif with a or condition.

One way:
=sumproduct(--((('total outages'!r2:r300=c48)+('total outages'!r2:r300=c49))0),
--('Total Outages'!Q2:Q300=H2),
--('Total Outages'!s2:s300=c7))


Mike wrote:

I have the equation below which tallies the number of records that meet the
criteria Server Hardware, Internal Issue and Limited Functionality. This
works great with the following formula:

=SUM(IF(('Total Outages'!R2:R300=C48)*('Total Outages'!Q2:Q300=H2)*('Total
Outages'!S2:S300=C7),1,0))

But I need a formula to include an OR condition to tally the number of
records that are either Server Hardware or Server Software in R2:R300.

C48 = Server Hardware
C49 = Server Software
H2 = Limited Functionality
C7 = Internal Issue

I have tried using a wildcard €˜ser*, no luck, I have tried *OR, no luck,
also tried using SUMPRODUCT no luck.

Any help is appreciated.

Thanks,

Mike

--
Mike


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,101
Default Sumif with a or condition.

I believe I got it to work,,,had to add an additional column (V) with values
of 1....


=SUMPRODUCT(--('Total Outages'!Q2:Q300=H2),--('Total
Outages'!S2:S300=C7),--(ISNUMBER(MATCH('Total
Outages'!$R$2:$R$300,C48:C49,0))),'Total Outages'!V2:V300)



Thanks,
--
Mike


"Mike" wrote:

2003...................

How is it written using sumproduct?
--
Mike


"Marcelo" wrote:

what version of MS Excel are you use? 2003 or 2007?

2007 = sumifs

2003 = sumproduct should runs.

hth
--
pleae click yes if it was helpfull
regards from Brazil
Marcelo



"Mike" escreveu:

I have the equation below which tallies the number of records that meet the
criteria Server Hardware, Internal Issue and Limited Functionality. This
works great with the following formula:

=SUM(IF(('Total Outages'!R2:R300=C48)*('Total Outages'!Q2:Q300=H2)*('Total
Outages'!S2:S300=C7),1,0))

But I need a formula to include an OR condition to tally the number of
records that are either Server Hardware or Server Software in R2:R300.

C48 = Server Hardware
C49 = Server Software
H2 = Limited Functionality
C7 = Internal Issue

I have tried using a wildcard €˜ser*, no luck, I have tried *OR, no luck,
also tried using SUMPRODUCT no luck.

Any help is appreciated.

Thanks,

Mike

--
Mike



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,047
Default Sumif with a or condition.

great
--
pleae click yes if it was helpfull
regards from Brazil
Marcelo



"Mike" escreveu:

I believe I got it to work,,,had to add an additional column (V) with values
of 1....


=SUMPRODUCT(--('Total Outages'!Q2:Q300=H2),--('Total
Outages'!S2:S300=C7),--(ISNUMBER(MATCH('Total
Outages'!$R$2:$R$300,C48:C49,0))),'Total Outages'!V2:V300)



Thanks,
--
Mike


"Mike" wrote:

2003...................

How is it written using sumproduct?
--
Mike


"Marcelo" wrote:

what version of MS Excel are you use? 2003 or 2007?

2007 = sumifs

2003 = sumproduct should runs.

hth
--
pleae click yes if it was helpfull
regards from Brazil
Marcelo



"Mike" escreveu:

I have the equation below which tallies the number of records that meet the
criteria Server Hardware, Internal Issue and Limited Functionality. This
works great with the following formula:

=SUM(IF(('Total Outages'!R2:R300=C48)*('Total Outages'!Q2:Q300=H2)*('Total
Outages'!S2:S300=C7),1,0))

But I need a formula to include an OR condition to tally the number of
records that are either Server Hardware or Server Software in R2:R300.

C48 = Server Hardware
C49 = Server Software
H2 = Limited Functionality
C7 = Internal Issue

I have tried using a wildcard €˜ser*, no luck, I have tried *OR, no luck,
also tried using SUMPRODUCT no luck.

Any help is appreciated.

Thanks,

Mike

--
Mike

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 834
Default Sumif with a or condition.

You don't need that additional column

=SUMPRODUCT(--('Total Outages'!Q2:Q300=H2),
--('Total Outages'!S2:S300=C7),
--(ISNUMBER(MATCH('Total
Outages'!$R$2:$R$300,C48:C49,0))))

--

HTH

Bob

"Mike" wrote in message
...
I believe I got it to work,,,had to add an additional column (V) with
values
of 1....


=SUMPRODUCT(--('Total Outages'!Q2:Q300=H2),--('Total
Outages'!S2:S300=C7),--(ISNUMBER(MATCH('Total
Outages'!$R$2:$R$300,C48:C49,0))),'Total Outages'!V2:V300)



Thanks,
--
Mike


"Mike" wrote:

2003...................

How is it written using sumproduct?
--
Mike


"Marcelo" wrote:

what version of MS Excel are you use? 2003 or 2007?

2007 = sumifs

2003 = sumproduct should runs.

hth
--
pleae click yes if it was helpfull
regards from Brazil
Marcelo



"Mike" escreveu:

I have the equation below which tallies the number of records that
meet the
criteria Server Hardware, Internal Issue and Limited Functionality.
This
works great with the following formula:

=SUM(IF(('Total Outages'!R2:R300=C48)*('Total
Outages'!Q2:Q300=H2)*('Total
Outages'!S2:S300=C7),1,0))

But I need a formula to include an OR condition to tally the number
of
records that are either Server Hardware or Server Software in
R2:R300.

C48 = Server Hardware
C49 = Server Software
H2 = Limited Functionality
C7 = Internal Issue

I have tried using a wildcard 'ser*', no luck, I have tried *OR, no
luck,
also tried using SUMPRODUCT no luck.

Any help is appreciated.

Thanks,

Mike

--
Mike



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
sumif with a second condition jewel Excel Worksheet Functions 6 September 5th 08 07:46 PM
Sumif condition pdberger Excel Worksheet Functions 2 June 24th 08 08:06 PM
Sumif, having two condition ViestaWu Excel Worksheet Functions 2 June 7th 07 10:23 AM
sumif with or< condition Will Fleenor Excel Discussion (Misc queries) 8 April 27th 07 07:45 AM
sumif on more than one condition steve alcock Links and Linking in Excel 4 May 13th 05 01:53 PM


All times are GMT +1. The time now is 07:04 AM.

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"