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=
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