--
You received this message because you are subscribed to the Google Groups "Google Apps Script Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-apps-script-c...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-apps-script-community/61464be2-235c-4f8d-815c-f05e4ef4f5ddn%40googlegroups.com.
const wbk = SpreadsheetApp.getActiveSpreadsheet();
const ss = wbk.getActiveSheet();
const value1 = ss.getRange("E29").getValue();
const value2 = ss.getRange("F29").getValue();
const sumValues = value1 + value2;
ss.getRange("F29").setValue(sumValues);
To view this discussion on the web visit https://groups.google.com/d/msgid/google-apps-script-community/f46303b9-89fd-498f-aa1e-fc5bffee78e1n%40googlegroups.com.
function gather_set(){
To view this discussion on the web visit https://groups.google.com/d/msgid/google-apps-script-community/e5e3f045-c74c-4115-8cb1-c80252a9332bn%40googlegroups.com.