#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 52
Default SUMPRODUCT help

Good afternoon everyone

I have the following 2 formula's that are working perfectly for me

=(SUMPRODUCT((K99<70%)*(B118=1),K78*'Base Data'!$I$31))
=(SUMPRODUCT((K99100%)*(B118=1),K78*'Base Data'!$G$31))

I need one last formula that allows me to say if K9970% but less than 100%

Can anybody offer any help, I can't seem to enter it without getting an error
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default SUMPRODUCT help

Mark,

Try this

=SUMPRODUCT((K9970%)*(K99<100%)*(B118=1)*(K78*'Ba se data'!$I$31))
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"Mark D" wrote:

Good afternoon everyone

I have the following 2 formula's that are working perfectly for me

=(SUMPRODUCT((K99<70%)*(B118=1),K78*'Base Data'!$I$31))
=(SUMPRODUCT((K99100%)*(B118=1),K78*'Base Data'!$G$31))

I need one last formula that allows me to say if K9970% but less than 100%

Can anybody offer any help, I can't seem to enter it without getting an error

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 834
Default SUMPRODUCT help


Why are you using SUMPRODUCT for a single cell.

Use

=IF(AND(B118=1,K99<70%),'Base Data'!$I$31,0)

=IF(AND(B118=1,K99100%),'Base Data'!$G$31,0)


the third would follow the same principles, but I am not sure wheter it
would output I31 or G31


--

HTH

Bob

"Mark D" wrote in message
...
Good afternoon everyone

I have the following 2 formula's that are working perfectly for me

=(SUMPRODUCT((K99<70%)*(B118=1),K78*'Base Data'!$I$31))
=(SUMPRODUCT((K99100%)*(B118=1),K78*'Base Data'!$G$31))

I need one last formula that allows me to say if K9970% but less than
100%

Can anybody offer any help, I can't seem to enter it without getting an
error



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,389
Default SUMPRODUCT help

Try this:
=k78*if(b118<1,0,if(k99<70%,'Base Data'!$I$31,if(K99<100%,"whatever cell
you want",'Base Data'!$G$31)))

Regards,
Fred

"Mark D" wrote in message
...
Good afternoon everyone

I have the following 2 formula's that are working perfectly for me

=(SUMPRODUCT((K99<70%)*(B118=1),K78*'Base Data'!$I$31))
=(SUMPRODUCT((K99100%)*(B118=1),K78*'Base Data'!$G$31))

I need one last formula that allows me to say if K9970% but less than
100%

Can anybody offer any help, I can't seem to enter it without getting an
error


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
Sumproduct with Condition OR Sumproduct with ADDRESS function - HE gholly Excel Discussion (Misc queries) 2 September 28th 09 05:07 PM
SUMPRODUCT William17 Excel Discussion (Misc queries) 5 October 19th 08 01:14 AM
Conditional SUMPRODUCT or SUMPRODUCT with Filters Ted M H Excel Worksheet Functions 4 August 14th 08 07:50 PM
sumproduct? sumif(sumproduct)? David Excel Worksheet Functions 3 July 13th 07 07:06 PM
sumproduct Jerry Kinder New Users to Excel 7 March 9th 06 07:36 PM


All times are GMT +1. The time now is 11:48 PM.

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

About Us

"It's about Microsoft Excel"