Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

gsheet get cell background color

/**
 * Returns the Hexadecimal value of a cell's background color.
 *
 * @param {number} row The cell's row number.
 * @param {number} column The cell's column number.
 * @return The Hexadecimal value of the cell's background color.
 * @customfunction
 */
function BGHEX(row, column) {
  var background = SpreadsheetApp.getActive().getDataRange().getCell(row, column).getBackground();
  return background;
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: formatDuration js 
Javascript :: how to remove elevation tab bar react native 
Javascript :: calculate 5 star rating js 
Javascript :: khai bao bien js 
Javascript :: Cannot find module Cannot find module 
Javascript :: how to add autoserial number in react js 
Javascript :: loop through json object jquery 
Javascript :: convert milliseconds to hours minutes seconds javascript 
Javascript :: vue fetch 
Javascript :: ubicar escrol en el final js 
Javascript :: how to make messaging website with firebase javascript 
Javascript :: birth day quote 
Javascript :: how to trigger on Blur only when clicked outside parent component and not child component in react js 
Javascript :: add multiple parameters js 
Javascript :: pure-javascript-listen-to-input-value-change 
Javascript :: Nested objects and files 
Javascript :: override submit button javascript 
Javascript :: ameca face expression code xcode 
Javascript :: Assign arrow function to a variable before exporting as module default 
Javascript :: aos cdn 
Javascript :: Vuex body skeleton 
Javascript :: New year chaos solution 
Javascript :: using for loops to add an event listener 
Javascript :: remove post via ajax 
Javascript :: discord.js message edit 
Javascript :: cd doesn’t work inside childProcess 
Javascript :: To enable server-to-server and REST tools like Postman to access our API - 
Javascript :: js The equivalent of destructuring arrays and objects 
Javascript :: Getting current location from browser Chrome and Firefox console 
Javascript :: _.has Creator Functions Do Not Have "Constructor" 
ADD CONTENT
Topic
Content
Source link
Name
9+4 =