How do I use records from a spreadsheet (Google) to create a printable directory?

Viewed 25

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:

  1. Record values are in a vertical format
  2. Records are in order by field "last name"
  3. 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

1 Answers
Related