What formula to use to calculate a column with a drop down in another sheet by month.
Hi, I have created a tracking sheet that contains data and issues brought up each month. Now I am wanting to take data from specific columns and have a formula that counts the entries by month in another sheet. I have tried a few different formulas and have been getting errors.
The column I am wanting to calculate has 4 selections, Class 1, Class 2, Class 3 and Class 4. I am wanting to know the total of each at the end of each month.
I would like the total to appear in the below.
Pulled from the below sheet/column
Best Answer
-
That certainly looks like a date format to me...
But I figured out your issue!! - blank cells in your date column! It can't evaluate a blank value with the MONTH function. So here's what we do to get around that...
First, how does COUNTIFS really work? COUNTIFS formula evaluates its criteria from left to right, and reduces which cells it considers as it evaluates each criteria. So we're first going to tell it to find the cells that are date values, and from those, find the ones that match the proper month number, and from those, count the ones with the right issue:
=COUNTIFS({QA Alert test Sheet Range 3}, ISDATE(@cell), {QA Alert test Sheet Range 3}, MONTH(@cell) = 4, {QA Alert test Sheet Range 2}, "Class 1 - Missing Parts")
😀
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
Answers
-
Try this:
=COUNTIFS({Tracking Sheet 1g. Date Opened}, MONTH(@cell) = 4, {Tracking Sheet 1j. Problem Classification}, "Class 1 - Missing Parts")
The items in italics are column references back to the tracking sheet. Smartsheet will help you create them; when you get to =COUNTIFS( a box will pop up - click on "Reference Another Sheet", select your tracking sheet and the column you want to reference.
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
-
Hi!
Try this to see if it would work. I made assumptions about the title of the column that indicates class type in your metric sheet. The curly brackets indicate a cross sheet reference and I used the column name to indicate those.
It would be a COUNTIFS formula. Example for counting Class 2 issues for the month of January below.
=COUNTIFS({1j. Problem Classification}, [QUALITY ALERT BREAKDOWN PER CLASS]@row, {1g. Date Opened}, MONTH(@cell)=1)
-
Hi thank you, I have tried both suggestions and still keep getting an error. I have attached a photo of the formula I am entering.
-
What error are you getting? The syntax looks good to me as written, but the error will help me diagnose.
-
What is the error message? Smartsheet error messages give you a good clue as to what is causing the problem.
My first guess would be that your 1g. Date Opened column is not really a Date column or not really date values?
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
-
I am getting an INVALID DATA TYPE.
If there is any other information that might help just let me know.
I am at a loss
-
Got it, yes I agree with Jeff, it is likely that. your "QA Alert Test Sheet range 3" is not actually looking at a date column. Double click the column to evaluate the column type and ensure it is capturing dates.
-
Hi thank you both, I have checked the column is a date column. Still not working.
I will play around some more. Worst case I reformat the sheet.
-
How are those dates getting into that column? Via formula, link in from another sheet, or manual entry? It's possible that you have a date-type column that is holding text/number values, which would produce the same error. Here's a test you can do to see if that's the problem:
Go to an empty cell in a text/number column in your tracking sheet on a row that has a date in the 1g. Date Opened column. Enter:
=MONTH([1g. Date Opened]@row)
If you get the #INVALID DATA TYPE error then you know there's an issue with your date values.
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
-
Thank you Jeff.
The rows in my sheet are populated when someone submits a form. On my form I have the date is a required field. See image of snip from my form.
Is there away around this? Or will I be unable to count entries by month?
-
That certainly looks like a date format to me...
But I figured out your issue!! - blank cells in your date column! It can't evaluate a blank value with the MONTH function. So here's what we do to get around that...
First, how does COUNTIFS really work? COUNTIFS formula evaluates its criteria from left to right, and reduces which cells it considers as it evaluates each criteria. So we're first going to tell it to find the cells that are date values, and from those, find the ones that match the proper month number, and from those, count the ones with the right issue:
=COUNTIFS({QA Alert test Sheet Range 3}, ISDATE(@cell), {QA Alert test Sheet Range 3}, MONTH(@cell) = 4, {QA Alert test Sheet Range 2}, "Class 1 - Missing Parts")
😀
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
-
Thank you Jeff! This solved my problem! I appreciate the help
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.3K Get Help
- 364 Global Discussions
- 199 Industry Talk
- 428 Announcements
- 4.4K Ideas & Feature Requests
- 136 Brandfolder
- 127 Just for fun
- 128 Community Job Board
- 445 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!