Sign in to join the conversation:
Hi There,
I am currently building a Dashboard and I want to show the number of Tickets that have been opened for a certain period, e.g. the number of tickets opened with a week.
Is there a formula that I can use to achieve this.
Yes. You would use a straightforward COUNTIFS for this...
=COUNTIFS([Date Column]:[Date Column], DATEONLY(@cell) >= TODAY(-7))
This will give you within the past 7 days. If you needed a different date range, you would just have to modify the criteria to reflect that.
Hi Paul, Thank you it worked.
Happy to help!
Hi there, I've created a sheet to where my team is tracking information received. In one column, we are logging the date and time information came in (ie: November 21, 2025 8:30 AM). I would like to add a checkbox column, with a formula specifying that the box be checked if the logged time is AFTER 8:30 AM, and left…
I have a column named Territory, where I am trying to write a formula to populate it when names are chosen from an adjacent drop-down list column called Employee Attendee. If more than one name is selected from the Employee column, I would like their respective territories to populate in the Territory field, separated by a…
I have a list of properties that I'm keeping track of. I have each building divided into suites (children) and each suite has a cell with its square footage. The total square footage rolls up to the building name. I also have a drop down column that shows if the suite is occupied or vacant. I need a to calculate the…