I am trying to do a sheet summary formula to get the percent of tasked closed assuming Project Name is "RPA Project"
Please see formula:
=IF([Project Name]:[Project Name] = "RPA Project", (Closed# / [Count of Status]#), "")
The Closed # and Count of Status are also sheet summaries Below are their formulas:
=COUNTIF(Status:Status, "Closed")
=COUNT(Status:Status)