First, I had the following formula to return the number of tasks marked done over the total number of tasks (i.e., 10 / 50 complete) , then realized Smartsheet did not support the CONCATENATE function.
=CONCATENATE(COUNTA($[Done]$2:$[Done]$51) "/" COUNTA($[Task Name]$2:$[Task Name]$51)," completed ")
So, then, I tried the following formula, and received a Missing or Invalid Parameters error message. Any ideas or help with my formula?
=(COUNTA($[Done]$2:$[Done]$51) + "/" + COUNTA($[Task Name]$2:$[Task Name]$51)," completed ")