CSE formula not working in EXCEL 2003

ctsgreddy

New Member
Joined
Oct 11, 2009
Messages
5
HI - I have typed a formula to sum the list of values based on multiple conditions; my formula goes like this

=SUM(IF('Detailed Mapping status'!B4:B180='Detailed Mapping status'!Z1,IF('Detailed Mapping status'!C4:C199='Detailed Mapping status'!AA1,'Detailed Mapping status'!F4:F1215)))

I used Control + Shift + Enter to make this formula working; but it is not working... please help
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
All of the ranges must be the same size:

B4:B180 = 177 rows
C4:C199 = 196 rows
F4:F1215 = 1212 rows
 
Upvote 0
Good move!

Yes, indeed:biggrin:, at first I didn't realize the inequality of ranges,

anyhow, here is the modified version of my answer,

-----------------------------

Hi, ctsgreddy,

Welcome to the board,:)

As #NAME said, all your ranges need to be equal in size,

assuming the largest of the ranges to be the size of all others, you could switch to non-CSE SUMPRODUCT formula,

Code:
=SUMPRODUCT(--('Detailed Mapping status'!B4:B1215='Detailed Mapping status'!Z1),--('Detailed Mapping status'!C4:C1215='Detailed Mapping status'!AA1),'Detailed Mapping status'!F4:F1215)

If the above doesn't help, elaborate more on what you are trying to achieve
 
Upvote 0

Forum statistics

Threads
1,214,786
Messages
6,121,548
Members
449,038
Latest member
Guest1337

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top