playpbateman

New Member
Joined
Jul 29, 2010
Messages
4
Hello,

So I am performing a sum if the value from a cell is equal to any one of the multiple conditions I am providing in separate cells. The formula I currently have works, however it is very bulky because I have three conditions I want to compare to. This is what I have:


=IF(OR($'Complete Day Chart'.$A$52="All";$'Complete Day Chart'.$A$52=
O$2;$'Complete Day Chart'.$A$52=O$4;$'Complete Day Chart'.$A$52=O$1);...)

I was wondering if there was a way to only have to write the cell I want to compare once followed by its conditions. Something along the lines of:​

=IF($'Complete Day Chart'.$A$52=OR("All";O$1;O$2;O$4);...)​

Thanks for the help​
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
This is one way:

=IF(ISNUMBER(MATCH($'Complete Day Chart'.$A$52;{"All";O$1;O$2;O$4};0));...)

or:

=IF(OR($'Complete Day Chart'.$A$52={"All";O$1;O$2;O$4});...)

Not sure if my semi-colons or commas are correct for a non-US version of Excel.

Hope that helps.

Edit: Nevermind I forgot you cannot put cell references (only hard-coded values like "All") into the brackets so the 2 approaches above is no good, I will post back with something else.
 
Last edited:
Upvote 0
Thank you for the reply! Theoretically I feel like that should have worked, I don't know why I didn't think about using an array, however, for some reason it did not. The reason for the semicolons are that I'm actually using open office, but am familiar enough with both programs and their similarities that I should be able to change the slight differences.

The error its returning to me is an Err:512, formula overflow. This could be caused by the mishandling of the array, but I'm not really sure
 
Upvote 0
Hi schielrn,

So I found out that the problem isn't the array in the MATCH() statement but the fact that I am referencing cells in the array. It worked when I substituted the references for the hand written values but that would even further enlongate more cell equations. I was wondering if you know if there is a way to get around that.

Thanks!******** type=text/javascript> vbmenu_register("postmenu_2392713", true); *********>
 
Upvote 0
Hi,

I'm not sure if it's less clunky or not but I'd use the following:

Code:
=OR(A52="All",A52=O1,A52=O2,A52=O4)*SUM(B2:B48)

If the OR = true it'll show the sum, otherwise it will show 0 which you could obviously amend to show as null or whatever by wrapping it in an IF...


S.
 
Upvote 0
Also on the idea of making less clunky you could name the cell to something more readable and just reference that in the formula:

Code:
=OR(A52="All",A52=Name1,A52=Name2,A52=Name3)*SUM(B28:B48)

Hope that helps a little... lol


S.
 
Upvote 0
I would but it's on a separate sheet and that's what the sheet is named. I decided to go a slightly obscure way around it but figured it out. Thank you both for your help!
 
Upvote 0

Forum statistics

Threads
1,214,819
Messages
6,121,729
Members
449,049
Latest member
MiguekHeka

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