Hi all!
I am back again with another Smartsheet question! This time I'm not certain if what I'm asking for is even possible. I was wondering if it would be possible to format 3 columns to make them smaller and more digestible. At the moment, I have a sheet that displays dates tasks have been completed, the week of that date, the days it took to complete the task, as well as the count (how many tasks were completed in that week) and the average tasks completed over that week. Currently the values for week completed, average, and count are displayed all the way down the sheet for 12 weeks worth of tasks. What I would like is for the weeks to be displayed only once, with their respective average, and count next to each other. This is not very comprehensive, don't worry I'll include screen shots as well.
Please find below the screenshots of what I have against what I am aiming for with mock data:
This is what my sheet currently looks likes
I would like the Output Columns to look like this (you can ignore target, its output is constant)
This would make things much easier and more digestible for the user, rather than scrolling constantly through the entire page. The formulas I am using for the Average, Week of, and count are the following:
AVG:
=AVG(COLLECT([Days to Complete]:[Days to Complete], [Week Of]:[Week Of], @cell = [Week Of]@row))
Week Of:
=IF((IF(WEEKDAY([Date Completed]@row) = 6, WEEKNUMBER([Date Completed]@row) + 1, WEEKNUMBER([Date Completed]@row))) > 19, DATE(2020, 12, 30) + ((IF(WEEKDAY([Date Completed]@row) = 6, WEEKNUMBER([Date Completed]@row) + 1, WEEKNUMBER([Date Completed]@row))) * 7 - 4), DATE(2022, 1, 4) + (((IF(WEEKDAY([Date Completed]@row) = 6, WEEKNUMBER([Date Completed]@row) + 1, WEEKNUMBER([Date Completed]@row))) - 1) * 7 - 4))
Count:
=COUNTIF([Week Of]:[Week Of], @cell = [Week Of]@row)
Thank you all in advance, you guys have helped me a great deal on this platform, and have been so nice in your reception of my questions, I really appreciate all of you!