I am trying to achieve the following a % Completion Formula using the following column: "Availability Status".
Availability Status has the following drop down: "Available" , "Unavailable - In Progress" , "Unavailable - Backlog"
I want to COUNTIFS the number of child rows that have "Available" and "Unavailable - In Progress" and divid that by all the children rows that also meet the "Available" and "Unavailable - In Progress" criteria.
I tried this:
=COUNTIFS(CHILDREN(), [Availability Status]:[Availability Status], "Available", [Availability Status]:[Availability Status], "Unavailable - In Progress") / COUNTIFS(CHILDREN(), [Availability Status]:[Availability Status], "Available", [Availability Status]:[Availability Status], "Unavailable - In Progress") * 100 + "%"
But, this did not work.
Any help would be much appreciated. Thanks!