How do I write a COUNTIFs statement to say if value in column A = "City", then count the dates between 1/1/2016 and 12/31/2016?
Thanks!
After working on it a bit longer I figured it out:
=COUNTIFS({Community}, "Missoula", {Date}, >=DATE(2016, 1, 1), {Date}, <=DATE(2016, 12, 31))
If you are looking at the entire year, you could save yourself a few keystrokes and use something along the lines of...
=COUNTIFS({Community}, "Missoula", {Date}, YEAR(@cell) = 2016)
^^ looks at all of 2016
You can also use this to look at specific months or even a specific month within a specific year.
=COUNTIFS({Community}, "Missoula", {Date}, MONTH(@cell) = 6)
^^ looks at every date that falls within the month of June
=COUNTIFS({Community}, "Missoula", {Date}, AND(YEAR(@cell) = 2016, MONTH(@cell) = 6)
^^ Looks at every date that falls in June of 2016
Hey, Is anyone else facing this issue in the approval notifications sent through smartsheet
I have a sheet with a list of customers in one column, and then the following columns are City, Monday, Tuesday, Wednesday, Thursday, Friday. I need help with a formula that I can put in my sheet summary so that if the customer column says Staples (It can say this in multiple rows) that it will tell me the total package…
Hi Smartsheet community, I've always tried to answer questions but this is my first time posting. So I have formula =IF([Project Status]@row = "Complete", 1, 0) set up in the "Complete Check - Hide column" to check the box when the project status is marked complete. The project status column is tied to several other sheets…