Hello. I am using smartsheet as a ticket tracking database for multiple clients and want to create dashboards for each client to review their individual metrics (tickets opened or closed this week, month or year etc).
I can easily pull a total ticket count by day, week, month etc using the formulas below:
Last year:
=COUNTIF({Created Date Range}, IFERROR(YEAR(@cell ), 0) = YEAR(TODAY()) - 1)
Last week:
=IF(WEEKNUMBER(TODAY()) = 1, COUNTIFS({Created Date Range}, IFERROR(WEEKNUMBER(@cell ), 0) = 52, {Created Date Range}, IFERROR(YEAR(@cell ), 0) = YEAR(TODAY()) - 1), COUNTIFS({Created Date Range}, IFERROR(WEEKNUMBER(@cell ), 0) = WEEKNUMBER(TODAY()) - 1, {Created Date Range}, IFERROR(YEAR(@cell ), 0) = YEAR(TODAY())))
My issue is trying to only pull data for each client. Is there a formula that will allow me to do this from one smartsheet rather than creating individual sheets? Here is a snippet of the source data: