This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function highlightcells() { | |
| var sheet = SpreadsheetApp.getActiveSheet(); | |
| var allData = sheet.getDataRange(); | |
| var dataRange = sheet.getRange(2,3,allData.getLastRow(),allData.getLastColumn()); | |
| var data = dataRange.getValues(); | |
| // iterate over data | |
| var values = []; | |
| for (var i = 0; i < data.length; i++) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // track pixel density ratio | |
| if (window.devicePixelRatio) { | |
| _gaq.push(['_setCustomVar', 11, 'Pixel Ratio', String(window.devicePixelRatio), 2 ]); | |
| } |
NewerOlder