Forum Discussion
Jesus_daza
Mar 03, 2022Copper Contributor
Porcentaje físico o real
Buenas tardes, tengo una consulta y espero me puedan ayudar Estoy realizando la actualización del %avance completado (programado por las fechas) de un proyecto para compararlo con el porcentaje r...
- Mar 04, 2022Jesus_daza,
For reference this is an English language forum so please use English for all future posts.
I translated your question and it sounds like you want to do something with the Physical % Complete field. Also you mention something about comparing with the "real percentages". What exactly are the "real percentages".
The Physical % Complete field is populated by user entry and it does not roll up to summary level simply because Project has no way of "knowing" how subtask physical percent complete values should be summarized at summary level. And like all other built-in Project fields, they can not be customized with a custom field formula, they can only be customized through VBA.
It may be possible to create a custom field for your percent complete metric but you would only be able to roll up an average at summary level but that is NOT how Project calculates the % Complete value at summary level. Project calculates summary level percent complete using this formula:
Summary level percent complete = (sum of all subtask actual durations)/(sum of all subtask durations) x 100%.
You could duplicate this calculation in a custom field but it would require the use of VBA.
John
John-project
Mar 04, 2022Silver Contributor
Jesus_daza,
For reference this is an English language forum so please use English for all future posts.
I translated your question and it sounds like you want to do something with the Physical % Complete field. Also you mention something about comparing with the "real percentages". What exactly are the "real percentages".
The Physical % Complete field is populated by user entry and it does not roll up to summary level simply because Project has no way of "knowing" how subtask physical percent complete values should be summarized at summary level. And like all other built-in Project fields, they can not be customized with a custom field formula, they can only be customized through VBA.
It may be possible to create a custom field for your percent complete metric but you would only be able to roll up an average at summary level but that is NOT how Project calculates the % Complete value at summary level. Project calculates summary level percent complete using this formula:
Summary level percent complete = (sum of all subtask actual durations)/(sum of all subtask durations) x 100%.
You could duplicate this calculation in a custom field but it would require the use of VBA.
John
For reference this is an English language forum so please use English for all future posts.
I translated your question and it sounds like you want to do something with the Physical % Complete field. Also you mention something about comparing with the "real percentages". What exactly are the "real percentages".
The Physical % Complete field is populated by user entry and it does not roll up to summary level simply because Project has no way of "knowing" how subtask physical percent complete values should be summarized at summary level. And like all other built-in Project fields, they can not be customized with a custom field formula, they can only be customized through VBA.
It may be possible to create a custom field for your percent complete metric but you would only be able to roll up an average at summary level but that is NOT how Project calculates the % Complete value at summary level. Project calculates summary level percent complete using this formula:
Summary level percent complete = (sum of all subtask actual durations)/(sum of all subtask durations) x 100%.
You could duplicate this calculation in a custom field but it would require the use of VBA.
John
- Jesus_dazaMar 04, 2022Copper ContributorThank you very much.
- John-projectMar 04, 2022Silver ContributorJesus_daza,
You're welcome and thanks for the feedback.
John