Sign in to join the conversation:
I have a number of reports that calulate variously monthly totals that are used to feed into dashboards. I currently need to change the month it reports on manually every month - is there any way to automate this change?
Garmon
You could automate this through the sheet(s).
Something along the lines of a checkbox column with a basic
=IF(MONTH([Date Column Name]@row) = MONTH(TODAY()), 1)
This will check the box for any date that has the same month as the current date. You could then set your report up to pull based on that box being checked.
Of course the TODAY() function will only update to the current date if the sheet is activated, so it will need to be opened at least once a month for this to work.
Thanks Paul, that's a really neat way of going about it. I'll give it a spin.
regards,
Happy to help!
I needed this for a reporting template for my team. Multiple projects were displaying the same type of information in the same layout and pulling the same type of information for reporting. The problem was... One project needed the last 2 weeks. Another needed the past month. Some others needed year to date. Even had a few month to date reports.
Because the timeline for the reporting could change with each project, I basically included a few dropdowns for the requirements and built an IF statement to check boxes in a helper column based on the dropdown selections.
Then all I had to do was build the report to pull based on that box being checked.
That way we could easily "Save as New" and set our reporting requirements quickly and easily for each project without having to make a bunch of changes to individualize each one.
@Paul Newcome
Hi Paul!
I used your formula above for one of my reports, and it worked exactly as it should have but then I realized I have prior year's information in my sheet. I want it to check the current month, and not check the past year's month with it. Is there a way to do the formula and have it only pull the current year's date?
Thank you!
@Megan Harry Try something along these lines...
=IF(AND(MONTH([Date Column Name]@row) = MONTH(TODAY()), YEAR([Date Column]@row) = YEAR(TODAY())), 1)
Thank you! This worked perfectly. I am super excited about this formula I think I will utilize it a lot moving forward. Thank you for the help!
@Megan Harry Happy to help. 👍️
I personally use similar combinations a lot when pulling metrics because that same combination can be used in cross sheet references an in numerous other functions.
Hi Paul,
I have been playing around with this and had a new question. What if I were want the prior month's information in my report. So say it is currently April, but I want to view March's metrics for reporting reasons and look at the month's totals. Would I add onto this existing formula?
Thank you for the help!
That gets a little bit trickier. Try something like this...
=IF(AND(MONTH([Date Column Name]@row) = MONTH(TODAY()) + IF(MONTH(TODAY()) = 1, 11, -1), YEAR([Date Column]@row) = YEAR(TODAY()) - IF(MONTH(TODAY()) = 1, 1, 0)), 1)
Thank you Paul! This worked perfectly. Both of these formulas will be super helpful.
Happy to help. 👍️
Hello, I have two sheets. One is "Current tasks" and one is "Completed tasks". I have the rows (individual tasks) auto number when entered (2026-001, 2026-002, etc.). When the row is marked complete, it is moved to the "Completed task" sheet. The problem I am having is that when the row is moved the other tasks that remain…
Its very frustrating when you are adding multiple columns and having to use the slide bar to move to the end and then click the 3 dots and add another column. Seems there has to be an easier more productive way.
I'm receiving this message every time I try to open my sheets. I'm the only admin user. I have already performed proper troubleshooting, such as clearing the cache, logging in incognito, and logging out and back in, but the issue remains unresolved. It's been a few days, and I'm unable to track our projects and this…