Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 25
Default SUMPRODUCT USING <

I have this extemely large formula that is working fine, I want to define it
using the { } or funcunatily.

The current formula reads as:

=SUMPRODUCT(('Warehouse Management'!$F$15:$F$24="Apple")*('Warehouse
Management'!$D$15:$D$24<"FILL")*('Warehouse
Management'!$D$15:$D$24<"fill")*('Warehouse
Management'!$D$15:$D$24<"Fill")*('Warehouse
Management'!$D$15:$D$24<"")*('Warehouse Management'!$C$15:$C$24))

I tried but faild the following:

=SUMPRODUCT(('Warehouse Management'!$F$15:$F$24="Apple")*('Warehouse
Management'!$D$15:$D$24<{"FILL","fill","Fill",""} )*('Warehouse
Management'!$C$15:$C$24))

This doesnt seem to work, any ideas?

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,441
Default SUMPRODUCT USING <

Sean,

SUMPRODUCT doesn't work that way. You need to have one dimensional arrays only. Also, < is not
case sensitive, so you don't need to check for FILL & fill & Fill. If it was case sensitive, then
you could use something like

(UPPER('Warehouse Management'!$D$15:$D$24)<"FILL")

for the three Fill cases.... but, of course, there isn't any need for it...

HTH,
Bernie
MS Excel MVP


"Sean" wrote in message
...
I have this extemely large formula that is working fine, I want to define it
using the { } or funcunatily.

The current formula reads as:

=SUMPRODUCT(('Warehouse Management'!$F$15:$F$24="Apple")*('Warehouse
Management'!$D$15:$D$24<"FILL")*('Warehouse
Management'!$D$15:$D$24<"fill")*('Warehouse
Management'!$D$15:$D$24<"Fill")*('Warehouse
Management'!$D$15:$D$24<"")*('Warehouse Management'!$C$15:$C$24))

I tried but faild the following:

=SUMPRODUCT(('Warehouse Management'!$F$15:$F$24="Apple")*('Warehouse
Management'!$D$15:$D$24<{"FILL","fill","Fill",""} )*('Warehouse
Management'!$C$15:$C$24))

This doesnt seem to work, any ideas?

Thanks



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,593
Default SUMPRODUCT USING <

Why not just use

=SUMPRODUCT(('Warehouse Management'!$F$15:$F$24="Apple")*
('Warehouse Management'!$D$15:$D$24<"Fill")*
('Warehouse Management'!$D$15:$D$24<"")*
('Warehouse Management'!$C$15:$C$24))

it is not case-sensitive

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Sean" wrote in message
...
I have this extemely large formula that is working fine, I want to define

it
using the { } or funcunatily.

The current formula reads as:

=SUMPRODUCT(('Warehouse Management'!$F$15:$F$24="Apple")*('Warehouse
Management'!$D$15:$D$24<"FILL")*('Warehouse
Management'!$D$15:$D$24<"fill")*('Warehouse
Management'!$D$15:$D$24<"Fill")*('Warehouse
Management'!$D$15:$D$24<"")*('Warehouse Management'!$C$15:$C$24))

I tried but faild the following:

=SUMPRODUCT(('Warehouse Management'!$F$15:$F$24="Apple")*('Warehouse
Management'!$D$15:$D$24<{"FILL","fill","Fill",""} )*('Warehouse
Management'!$C$15:$C$24))

This doesnt seem to work, any ideas?

Thanks



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 help Asif Excel Worksheet Functions 5 February 11th 09 06:58 PM
sumproduct Gary Excel Discussion (Misc queries) 5 November 3rd 08 04:30 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


All times are GMT +1. The time now is 03:15 AM.

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"