14/07/2026
Welcome to Top Tip Tuesday.
We have a Smartsheet formula suggestion for you today. We have helped clients on this use case a number of times and thought it would make a great top tip for our followers!
Scenario:
You are a Smartsheet user and have activity being counted on a sheet when a particular date falls in the current month. The data in the sheet exceeds a years so you cannot just rely on a month match.
The method the clients found (example here for the month of July 2026):
=COUNTIFS([Date Column]:[Date Column], >=Date(2026,07,01),[Date Column]:[Date Column], <Date(2026,08,01))
๐Great, it works, but the clients then had to edit the formula on the 1st day of each month to change the numeric values in the Date() part of the function. This meant they had to remember to do this as soon as they logged in at the start of the month, and were unable to take holiday at the start of the month, due to this being a business critical data point that was used on dashboards. Not so great.๐ฉ
Solution - make the date self maintaining utilising alternative Date Functions.
We updated the formula to:
=COUNTIFS([Date Column]:[Date Column],ISDATE(), [Date Column]:[Date Column],MONTH()=MONTH(TODAY()),[Date Column]:[Date Column], YEAR()=YEAR(TODAY())
In the cases we adopted these formulas, the sheets were in daily use and so the TODAY() function was always set to the correct date.
A small change to the composition of the formula, using functions instead of static values. Big impact though. ๐
Let us know if you found this helpful!