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
Happy Thursday. I know many have asked this question before, but does anyone know of a way to have a column actively countdown time? Even if a plugin is needed, it will be considered. Here is what I'm looking to do. When a form is filled out and a new line is added to the sheet, I'd like the "Countdown Timer" column to…
I'm trying to pull in the contact information of a second HR Business Partner, contingent on the department of the individual, from a separate reference sheet. However, not all departments have a second HRBP— so if the column of "second HRBP contact info" is blank, I don't want anything to be pulled into the new sheet's…
I have an automation set up so that when the Status column changes to Complete, Canceled, or Not Needed, Smartsheet automatically updates the % Complete column to 100% (Text/Number column type). After that, another workflow should trigger to alert the next person that their task is ready. This worked fine before, but…