SUM values of column

Good morning to everyone!
I would like SUM the columns from E to N for each partner. In the file attached, i highlited in yellow the result that iโ€™d like see in my app for Project Management in order to be clearer in my request.

Thanks to everyone who will answer me!!

Solved Solved
0 2 272
1 ACCEPTED SOLUTION

Youโ€™ll have to specify each column individually, as Appsheet has no way to select across multiple columns. So your expression will be a bit large, but the individual parts will be fairly simple.

SUM(
  SELECT( table[E] , [partner] = XXX ) +
  SELECT( table[F] , [partner] = XXX ) +
  ...
)

View solution in original post

2 REPLIES 2

Youโ€™ll have to specify each column individually, as Appsheet has no way to select across multiple columns. So your expression will be a bit large, but the individual parts will be fairly simple.

SUM(
  SELECT( table[E] , [partner] = XXX ) +
  SELECT( table[F] , [partner] = XXX ) +
  ...
)

THANKS SO MUCH MARC_DILLON!

Top Labels in this Space