I have a Google Sheets table with records containing our members' contact information.
How do I publish that in a Google Doc or other format for printing to PDF or printer?
The spreadsheet contains records in long rows.
The directory (I would call it a "report") is an alphabetized list with the following requirements:
- Record values are in a vertical format
- Records are in order by field "last name"
- Record sets are set apart by the first letter of "last name" field
Example:
arr Ordinals = [A-Z];
foreach Ordinal in Ordinals :
<<Ordinal>>
for Record in Records where Record.LastName begins with Ordinal:
<<LastName>>
<<Member1>>, <<Member2>>
<<AdditionalMembers>>
<<StreetAddress>>
<<City>>, <<State>> <<Zip>>
<<Telephone1>>
<<Telephone2>>
<<Email1>>
<<Email2>>
endfor
endforeach