Answers for "copy one cell value to another in google app script"

0

copy one cell value to another in google app script

function singleCellCopy(){
  const ss=SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Order');
  const sRange= ss.getRange(4,2).getValue()
  Logger.log(sRange)
  ss.getRange(4,5).setValue(sRange)
}
Posted by: Guest on May-03-2022

Code answers related to "copy one cell value to another in google app script"

Code answers related to "Javascript"

Browse Popular Code Answers by Language