sum of value selected

I need to sum only a values selected in a table.

I select rows on a view connected a table with 5 columns (mytable) and only one column is numeric (mycolumn) 

I have tryed this sintax but non work. SUM(SELECT(mytable[mycolumn])).

thank

0 3 94
3 REPLIES 3


@TonyB wrote:

I select rows on a view


How are you selecting the rows?

  • If you're just using AppSheet's multi-select function in, say, a deck view there's no way to directly reference those rows in an expression. That functionality is for the purpose of performing an action on multiple rows, and is unrelated to the SELECT function.
  • If you're representing row selection with row data (e.g., a [Selected] Yes/No column), then reference that in your SUM expression. For example: SUM(SELECT(mytable[mycolumn], [Selected])).

Sorry

Top Labels in this Space