Average Value

I need to find the average value of five-field notes. Where is the error?

Average(SELECT(Consultores[prazo], [conteúdo], [cultura_de_ssma],[cultura_brandt]))

Hi @Francisco1988

Average(
Consultores[prazo]
+Consultores[conteúdo]
+Consultores[cultura_de_ssma]
+Consultores[cultura_brandt]
)

For reference

List expressions - AppSheet Help

AVERAGE() - AppSheet Help

Combine lists - AppSheet Help

2 Likes

The formula has been validated. but how do I make the note field automatically receive the value of this average?

did you try a virtual column instead of a real column ?

Use virtual columns - AppSheet Help

1 Like

Yes, I’m using a virtual column… do I need any specific configuration?

can you share a screenshot of your tables configurations ?

2 Likes


follow the photos

This is hugely different.

Try then:

AVERAGE(LIST([prazo], [conteúdo], [cultura_de_ssma],[cultura_brandt]))
1 Like