Is there a way of extracting the fill colours from a range of cells into an array quickly and without looping through cells? Something like the code shown below. Am I missing something obvious?
let sheet = workbook.getWorksheet('Sheet1')
//For cell values we can use
let values = sheet.getRange('A5:F35')?.getValues();
//but this doesn't work
let colors = sheet.getRange('A5:F35')?.getformat().getFill().getColor();
No native method from Microsoft gets
colors
for a range (multi-cells). A custom function makes it convenient.