I have been trying to make a Google App Script code which highlight the cell if it has specific text like "L".
I have made a below code but its not working and when i run this no error appears. i do not know what is the problem.
Can you have a look at it, please that why its not working.
function formatting() { var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Dec'); var range = sheet.getRange("C:AG"); if (range == 'L') { ss.range.setBackgroundColor('#ea9999'); } } 
