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
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!