I have added a ‘project completed percentage’ to a report, PMProject DAC and PMProjectRevenueTotal DAC has a relationship,
But when I add that field to the report it is not display the value, other fields of this DAC also visible in the report. How can I fix that?
Best answer by DipakNilkanth
Hi @PDharmasena10,
ContractCompletedPct is the calculated field and not existed in database that’s why it is not showing in report. As Reports and GI’s not able to display calculated fields, I believe you need to use formula to calculate the Completed percentage of project to display the same.
ContractCompletedPct is the calculated field and not existed in database that’s why it is not showing in report. As Reports and GI’s not able to display calculated fields, I believe you need to use formula to calculate the Completed percentage of project to display the same.
To calculate this in a report, we would look at the get{}, e.g., IIF([PMProjectRevenueTotal.CuryAmount] != 0 AND [PMProjectRevenueTotal.CuryAmount] NOT NULL, (([PMProjectRevenueTotal.CuryInvoicedAmount] + [PMProjectRevenueTotal.CuryActualAmount] + [PMProjectRevenueTotal.CuryInclTaxAmount])/[PMProjectRevenueTotal.CuryAmount])* 100, ‘ ‘)