SUMIFS Formula with Does Not Contain
I am creating a number of data sheets that will be the data for various Dashboard objects.
I have a master data file that lists all customers, Status, Pipeline $, etc. (Sales Pipeline Data Sheet)
In my current sheet, I am trying to enter a formula that will sum the total Pipeline $ for each Customer, along with the condition that the Status does not contain Invoiced.
The formula I currently have is:
=SUMIFS({Sales Pipeline Data Sheet - Range 1}, {Sales Pipeline Data Sheet - Range 2}, Customer@row, {Sales Pipeline Data Sheet - Range 3}, "<>*Invoiced*")
I am getting values returned, but it is including the total pipeline of each customer and NOT excluding those who have Invoiced included in the Status column (Range 3)
Thanks!
Kate
Best Answer
-
Try this...
=SUMIFS({Sales Pipeline Data Sheet - Range 1}, {Sales Pipeline Data Sheet - Range 2}, Customer@row, {Sales Pipeline Data Sheet - Range 3}, NOT(CONTAINS("Invoiced", @cell)))
Answers
-
Try this...
=SUMIFS({Sales Pipeline Data Sheet - Range 1}, {Sales Pipeline Data Sheet - Range 2}, Customer@row, {Sales Pipeline Data Sheet - Range 3}, NOT(CONTAINS("Invoiced", @cell)))
-
Thank you, Paul! For the "@cell" component, where would that come from? The Range 3 criterion range is where I want to lookup the "invoiced" value.
-
You would leave it exactly as is. "@cell" tells the formula to look in the previously established range on a cell by cell basis.
-
Success!!! THANK YOU!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.5K Get Help
- 402 Global Discussions
- 213 Industry Talk
- 450 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 135 Just for fun
- 56 Community Job Board
- 454 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!