skip to Main Content

Javascript – Arrays and "The parameters (number[]) don't match the method signature for SpreadsheetApp.Range.setValues." error

I have this code (it's pasted just a portion) var valores = [[FACTURA.getRange(CELDA_NRO_FACTURA).getValue(), //Nro Factura FACTURA.getRange(CELDA_FECHA).getValue(), //Fecha FACTURA.getRange(CELDA_MEDIO_PAGO1).getValue(), //Medio de pago FACTURA.getRange(CELDA_DTO_RGO_GENERAL).getValue(), //Dto/Rgo general //Fila 6 FACTURA.getRange(PRIMERA_FILA,PRIMERA_COLUMNA).getValue(), //Código FACTURA.getRange(PRIMERA_FILA,PRIMERA_COLUMNA + 1).getValue(), //Cantidad FACTURA.getRange(PRIMERA_FILA,PRIMERA_COLUMNA + 2).getValue(), //Descripción FACTURA.getRange(PRIMERA_FILA,PRIMERA_COLUMNA + 7).getValue(), //Unitario…

VIEW QUESTION
Back To Top
Search