How do i slect multiple columns

Hi
I have created a behaviour that emails me a report of unbilled hours for a customer.
I would like the body of the email to contain a table with 3 columns (date, notes, hours) for every row from my TASKS table.

The SELECT function only seems to be able to return values from one column

How can I get the values from 3 columns in my table into the body of my email?

Solved Solved
0 4 1,235
1 ACCEPTED SOLUTION

AppSheetโ€™s SELECT() function will only return a single columnโ€™s value from each matching row.

In this case, your email template will need a <<Start>>/<<End>> pair that uses FILTER() or SELECT() to gather the desired rows from the table or slice that has the desired columns. Between the <<Start>> & <<End>> tags, you can reference the columns individually as normal (e.g., [hours]). @Jonathan_S shared a good example of this above.

See also:



View solution in original post

4 REPLIES 4
Top Labels in this Space