Hi I have a working program to pull data from one sheet to another sheet and place in the relevant cells, however with one column I want to change the results which reads a "K" from the source sheet and write an "A" to the target sheet using a if function but I can only seem to do one cell and not the full column. How can I do this for multiple cells? If I try.getRange("F18:41") it doesn't seem to work. Please see the code below:
      var sss = SpreadsheetApp.openById('....'); // sss = source spreadsheet
      var ss = sss.getSheetByName('.....); // ss = source sheet
    //Get full range of data sheet 1
    var TypeWire = ss.getRange("F18");
    //get A1 notation identifying the range
    var A16Range = TypeWire.getA1Notation();
    //get the data values in range  
    var SDataSixteen = TypeWire.getValues();
     var tss = SpreadsheetApp.openById('.....'); // tss = target spreadsheet
     var ts = tss.getSheetByName('....'); // ts = target sheet
    //set the target range to the values of the source data
    ts.getRange("C40:C61").setValues(SDataSeven);
    if (SDataSixteen == "K")
    {
    ts.getRange("L16").setValue("A");
    } 
}
 
    