I have a Slice created for all students that have missed class for the past 10 days. I have been able to create an email to send to the parents saying that their child has missed more than 10 classes. What I would like is to send the administrator a single email with all the students and parent info. In one PDF perhaps?
I have been reading but haven’t seen how to do this. Can someone please point me in the correct direction?
I am guessing that its something in the template?
Thanks,
Flan
Thank you for the information. I read it. I am a bit confused as I am using a slice. The key column of the table that the slice is referencing is STUDENT_ID. Here is a screenshot of the template.
and I keep getting the error:
Thanks,
Flan
The error message is pretty self-explanatory. START needs a List of Refs. You’ve only provided it a single non-List value. Try to change
<<START: [Student_id]>>
to:
<<START: slice-name[student_id]>>
Related:
[Referencing a Column value in a Table, versus referencing ALL Column values in the entire Table](https://community.appsheet.com/t/referencing-a-column-value-in-a-table-versus-referencing-all-column-values-in-the-entire-table/50771) Tips & Tricks ?
Having answered this question about 1 million times now, I guess I should make a tips-and-tricks post about it. Expressions of the form Table[Column] return a List type data value that contains the values in Column for ALL records in the entire Table. Most likely, If I’ve referred you to this post, the answer to your question is simply to change it to just: [Column] One of the most common places I’ve seen new app builders use this, is within SELECT() expression, like: SELECT( Table[Col…
1 Like
yeah I tried that also. I have an idea the name of the slice has spaces in it perhaps if I take the spaces out.
yeah took the spaces out. I suppose I could have "’ it as well.
Thanks