Forum Discussion
PC2022
Helper III
1 year agoCalculating average between several columns
Trying to calculate the average number between 3 columns. I get an error "the count function only accepts a column reference as an argument" ScheduleAvg = (AVERAGE(crb87_consultantevaluation[crb...
- 1 year ago
Please try this
ScheduleAvg =
(
AVERAGE(crb87_consultantevaluation[crb87_timelinessofprojectphasesubmittalsd]) +
AVERAGE(crb87_consultantevaluation[crb87_timelysubmittalofprogressreportsandschedud]) +
AVERAGE(crb87_consultantevaluation[crb87_timelinessofprojectphasedeliverablesandord])
) / 3
pankajnamekar25
Super User
1 year agoPlease try this
ScheduleAvg =
(
AVERAGE(crb87_consultantevaluation[crb87_timelinessofprojectphasesubmittalsd]) +
AVERAGE(crb87_consultantevaluation[crb87_timelysubmittalofprogressreportsandschedud]) +
AVERAGE(crb87_consultantevaluation[crb87_timelinessofprojectphasedeliverablesandord])
) / 3
PC2022
Helper III
1 year agoNot working either