Attempting to add similar values with Sumif
I have a sheet that could list the same values multiple times as they are being populated via a Zap from Google Sheets. So that I can find a true total value of the Job Name, I am counting the times that they appear on the sheet and then dividing the Total Amounts of Sale for a Job by the number of instances on the sheet, see Average Sales Value. But it gets complex because I also need to add an average sale of Change Orders together with the original Job Name, i.e. Ye[Job #1887] and Ye[Job #1887] CO2. I am stuck on how to add the two averages together to get a grand total for the job.
So, for instance, I want to add the Average Sale Value of rows 7 and 8. I am stuck.
Answers
-
Hey @Barb R
You can use the CONTAINS function to see if a cell contains a specific value. This means you can SUM together a total value for 1887, even though there are other pieces of text along with the number.
Try something like this:
=SUMIFS([Job Name]:[Job Name], CONTAINS("1877", [Job Name]@row), [Amount of Check]:[Amount of Check])
Now that has the 1877 hard coded into the formula, so it wouldn't work in this sheet as you need it to be dynamic for each row. What I would suggest in this case is to set up a second sheet as your Metric sheet. One column would have all the Job Numbers to reference, then you can have the same SUMIFS but referencing the cell in the row instead of "in quotes":
=SUMIFS({Job Name Column}, CONTAINS([Job Name]@row, @cell), {Amount of Check Column})
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
-
Thank you. The problem is, I cannot sumif all of the matching job numbers, I need to separate the CO from the original because they have different amounts and cannot be averaged together. So, I need to add them as two distinct values. Your answer was useful however for potentially other situations. I was hoping to do a different sumif for those that matched the Job Number but had the CO and a wildcard. Looking at your formula, I may be able to figure that out. I was trying to use the Contain function, but it wasn't working.
-
Hi @Barb R
In this case I do think a separate sheet would be the best way to get your data together. This way you can list each individual Job Name down one column, but also group together the ones you want to average. You can have individual averages on each row (pulled using cross-sheet references to each individual job number), but then total averages based off of that data calculated in this summary sheet. Does that make sense?
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.9K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 458 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!