Sheet Summary Formula

The above image shows the three highlighted columns I am working with in the Sheet Summary section. If I just calculate the value by subheading, it works well but I need it to identify the status:
=SUMIF(SubHeading:SubHeading, (CONTAINS("Small Works", @cell)), Value:Value)
What I want my formula to do is to sum total the value column if the type of project in the SubHeading column is "service contract", and the Status is either "Projected", "Schedule" or "Not Stated". I am getting #UNPARSEABLE for the below formula:
=SUMIFS(Value:Value, SubHeading:SubHeading, (CONTAINS("Service Contract", @cell), (Status:Status, OR(@cell = "Projected", @cell = "Schedule", @cell = "Not Started")
Can someone help me figure out which part of the above formula is not correct?
Please ignore, I fixed it. I was missing the 2nd bracket after the CONTAINS section:
=SUMIFS(Value:Value, SubHeading:SubHeading, (CONTAINS("Service Contract", @cell)), Status:Status, OR(@cell = "Projected", @cell = "Schedule", @cell = "Not Started"))
Best Answer
-
I'm glad you were able to fix this!
Just a note, you don't actually need the extra parentheses around CONTAINS, if it's causing trouble:
=SUMIFS(Value:Value, SubHeading:SubHeading, CONTAINS("Service Contract", @cell), Status:Status, OR(@cell = "Projected", @cell = "Schedule", @cell = "Not Started"))
Cheers,
Genevieve
Need more information? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao!👋 | Global Discussions
Answers
-
I'm glad you were able to fix this!
Just a note, you don't actually need the extra parentheses around CONTAINS, if it's causing trouble:
=SUMIFS(Value:Value, SubHeading:SubHeading, CONTAINS("Service Contract", @cell), Status:Status, OR(@cell = "Projected", @cell = "Schedule", @cell = "Not Started"))
Cheers,
Genevieve
Need more information? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao!👋 | Global Discussions
-
@Genevieve P. great, thanks for that tip!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.9K Get Help
- 441 Global Discussions
- 153 Industry Talk
- 501 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 79 Community Job Board
- 511 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!