Good Morning SmartSheet Helper Gurus....
I have the need to get the number of Status = Closed for a select date range, then tell me the Sum of the Story Points column for those closed tickets.
I can get my number of closed ticket with :
=COUNTIFS({Story Point Reference}, FIND([Primary Column]2, @cell) > 0)
I can get my number of tickets within a date range with :
=COUNTIFS({Story Point Connector ( PID ) Creation Date}, <=DATE(2020, 10, 31), {Story Point Connector ( PID ) Creation Date}, >=DATE(2020, 10, 1), ({Story Point Reference}, FIND([Primary Column]2, @cell) > 0) )
However, that is where I get lost... I need to date one to only pull the closed tickets and also need to add in the sum total of the story point column for those said close tickets.
HELP!