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

I don't know if this is possible, but maybe there is a workaround.

I have these scripts running in a google spreadsheet with 1 extra sheet to embed the data in a report.

Sheet 1

Trigger on form submission

     function deleterow () {var ss = SpreadsheetApp.getActiveSpreadsheet();
     var sheet = ss.getSheets()[0];
     sheet.deleteRows(2);}

Sheet 2

Trigger On submission

 function email() {MailApp.sendEmail("myemailhere", "Attachment example",        
 "https://docs.google.com/a/cps.edu/spreadsheet/pub? 
 key=0AkQ2B2U9BxiTdEQxSXVoanVubTBPZDBBV1FmZ3NqY1E&single=true&gid=6&output=pdf");}

This is what I have tried so far:

When a form is submitted, the data populates row 2. Sheet 2 takes the data from sheet one and embeds it in a report that looks like a document that I need to submit. Example of a cell on sheet 2: "'Alpha Test .9'!B2=" alpha test.9 is the name of sheet 1.

I want the process to go like this: User submits the Form, spreadsheet is populated in row 2 with new data, sheet 2 grabs data from sheet 1 and puts in in the report, an email of the published pdf is sent out to me. User submits another form, Row 2 is populated with the new data, sheet 2 gets the new data and sends out the link to the updated .pdf.

So far, when running the above like it is, Row 2 is deleted and sheet 2 sees that there is nothing there and gives a REF error because row 2 does not exist. The email goes out and links a nice report, but with REF errors in every field.

I tried to have sheet 2 grab data from row 3 and then put some misc stuff in row 2. When I ran it, row 2 is deleted, but the the ='Alpha Test .9'!B3 changes to ='Alpha Test .9'!B2 !

Freezing the row does not stop this process.

Any way to stop the value from changing or is there a better way to do the whole thing?

Thanks

I also tried placing $ in front of the row and column to protect from the change, but it still changed.

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.