I have tried a number of ways to get this to work, and my hunch is I'm needing a percent average from other percent averages (where some may be an iferror result that needs to be unaccounted for).
Attached is an image of the work.
I need the average percentage of projects on design schedule for those with projects in design phase. Therefore, the #unparseable cell should read 100% and exclude Blaine's "N/A" result (which is an iferror result)
The current formula as it stands is: =(IFERROR(SUM([CURRENT WEEK]57, [CURRENT WEEK]54, [CURRENT WEEK]51, [CURRENT WEEK]48, [CURRENT WEEK]45), ""))/(IFERROR(COUNTIF([CURRENT WEEK]57, [CURRENT WEEK]54, [CURRENT WEEK]51, [CURRENT WEEK]48, [CURRENT WEEK]45), NOT("N/A")), "")
Each individuals percentage is the following formula: =IFERROR(SUM([CURRENT WEEK]58 / [CURRENT WEEK]59), "N/A"). This works as it is, but not sure if it's creating an issue.