Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am transitioning to Google Apps and it has been great for it's ease of use and the availability to access files anywhere. With Microsoft I had a "Mail Merge" set up which would generate a transmittal or a cover letter for me (not e-mail) populating fields that I could input into the template file. There appears to be no inherit function in Google, so I would like to set up a script but I have no idea what I am doing.

Ideally, a user would select a contact in the directory (simply select the cell within the row of the record), then select from the menu "Create Transmittal" and the script would gather the information from the active record, open the transmittal template, and populate the data fields (labeled <>, <>< etc.) with the information from the selected record in the spreadsheet. The result should be the open Google document - the user would then edit other portions as required and save it, print it manually. We may have to add new rows in the future (like Account or Notes) so I don't want to hard code each field name, but the field names in the document will always be the same as whatever column header we use in the spreadsheet.

The code I have so far:

    function onInstall() {
  onOpen();
}

function onOpen() {
  var ss = SpreadsheetApp.getActive();
  var menuEntries = [];
      menuEntries.push({name: "Make Transmittal", functionName: "makeTransmittal"});
  ss.addMenu("Custom Menu", menuEntries);
}


function makeTransmittal(){
    var docTemplate = "1eY2IzfT7RKR-G4beWCuFOMgqQEpGtKaLxN3NiAhwANM"; //Transmittal form address
    var docName = "Transmittal";//Rename it
    var sheet = SpreadsheetApp.getActiveSheet();


// get headers from a spreadsheet
function fetchSheetHeaders(sheetName) {
  var ss = SpreadsheetApp.getActive();
  var sheet = ss.getSheetByName(sheetName);
  var cols = sheet.getLastColumn();
  var range = sheet.getRange(1,1,1,cols);
  var data = range.getValues();
  var headers = new Array();
  for (i = 0; i<data[0].length; i++) {
    headers[i] = data[0][i];
  }
  return headers;
}  

// get data from a document 
function fetchDocFields(fileId) {
  var fileType = DocsList.getFileById(fileId).getFileType().toString();
  if (fileType=="document") { 
  var template = DocumentApp.openById(fileId);
  var title = template.getName();
  var fieldExp = "[<]{2,}\\S[^,]*?[>]{2,}";
  var result;
  var matchResults = new Array();
  var docFieldNames = new Array();

// get all tags in document
  matchResults = [];
  var body = template.getActiveSection();
  if (body!=null) { matchResults[0] = body.findText(fieldExp);}
  if (matchResults[0]!=null){
  var element = matchResults[0].getElement().asText().getText();
  var start = matchResults[0].getStartOffset()
  var end = matchResults[0].getEndOffsetInclusive()+1;
  var length = end-start;
  docFieldNames[0] = element.substr(start,length)
   var i = 0;
    while (docFieldNames[i]) {
      matchResults[i+1] = template.getActiveSection().findText(fieldExp, matchResults[i]);
      if (matchResults[i+1]) {
      var element = matchResults[i+1].getElement().asText().getText();
      var start = matchResults[i+1].getStartOffset()
      var end = matchResults[i+1].getEndOffsetInclusive()+1;
      var length = end-start;
     docFieldNames[i+1] = element.substr(start,length);
      }
      i++;
     }
    }

// open template
   var copyId   = DocsList.getFileById(docTemplate)
                  .makeCopy(docName+' for '+full_name)
                  .getId();
   var copyDoc  = DocumentApp.openById(copyId);
   var copyBody = copyDoc.getActiveSection();

// replace place holders with data 
  copyBody.replaceText('fieldNames', result);
   var todaysDate = Utilities.formatDate(new Date(), "GMT", "MM/dd/yyyy"); 
  }

}
}

I have spent days trying to educate myself on this, but I'm none the wiser. It seems everyone handles codes differently, and I cannot figure this out. The two files I have created for this are below. Any help you could offer would be greatly appreciated! Thanks, Aaron

Spreadsheet data file: Contacts Directory Document template: Contacts Transmittal

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.