PowerBuilder
PowerBuilder
Google Sheets Conditional Formatting - Color Gradient
See more Google Sheets Examples
Add a conditional color gradient across a rowChilkat PowerBuilder Downloads
integer li_rc
integer li_Success
oleobject loo_Http
string ls_SheetId
oleobject loo_Json
oleobject loo_Resp
li_Success = 0
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
// Implements the following CURL command:
// curl -H "Content-Type: application/json" \
// -H "Authorization: Bearer ACCESS_TOKEN" \
// -X POST \
// -d '{
// "requests": [
// {
// "addConditionalFormatRule": {
// "rule": {
// "ranges": [
// {
// "sheetId": sheetId,
// "startRowIndex": 9,
// "endRowIndex": 10,
// }
// ],
// "gradientRule": {
// "minpoint": {
// "color": {
// "green": 0.2,
// "red": 0.8
// },
// "type": "MIN"
// },
// "maxpoint": {
// "color": {
// "green": 0.9
// },
// "type": "MAX"
// },
// }
// },
// "index": 0
// }
// },
// {
// "addConditionalFormatRule": {
// "rule": {
// "ranges": [
// {
// "sheetId": sheetId,
// "startRowIndex": 10,
// "endRowIndex": 11,
// }
// ],
// "gradientRule": {
// "minpoint": {
// "color": {
// "green": 0.8,
// "red": 0.8
// },
// "type": "NUMBER",
// "value": "0"
// },
// "maxpoint": {
// "color": {
// "blue": 0.9,
// "green": 0.5,
// "red": 0.5
// },
// "type": "NUMBER",
// "value": "256"
// },
// }
// },
// "index": 1
// }
// },
// ]
// }' https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}:batchUpdate
// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code
// Use this online tool to generate code from sample JSON:
// Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "requests": [
// {
// "addConditionalFormatRule": {
// "rule": {
// "ranges": [
// {
// "sheetId": sheetId,
// "startRowIndex": 9,
// "endRowIndex": 10
// }
// ],
// "gradientRule": {
// "minpoint": {
// "color": {
// "green": 0.2,
// "red": 0.8
// },
// "type": "MIN"
// },
// "maxpoint": {
// "color": {
// "green": 0.9
// },
// "type": "MAX"
// }
// }
// },
// "index": 0
// }
// },
// {
// "addConditionalFormatRule": {
// "rule": {
// "ranges": [
// {
// "sheetId": sheetId,
// "startRowIndex": 10,
// "endRowIndex": 11
// }
// ],
// "gradientRule": {
// "minpoint": {
// "color": {
// "green": 0.8,
// "red": 0.8
// },
// "type": "NUMBER",
// "value": "0"
// },
// "maxpoint": {
// "color": {
// "blue": 0.9,
// "green": 0.5,
// "red": 0.5
// },
// "type": "NUMBER",
// "value": "256"
// }
// }
// },
// "index": 1
// }
// }
// ]
// }
ls_SheetId = "YOUR_SHEET_ID"
loo_Json = create oleobject
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")
loo_Json.UpdateString("requests[0].addConditionalFormatRule.rule.ranges[0].sheetId",ls_SheetId)
loo_Json.UpdateInt("requests[0].addConditionalFormatRule.rule.ranges[0].startRowIndex",9)
loo_Json.UpdateInt("requests[0].addConditionalFormatRule.rule.ranges[0].endRowIndex",10)
loo_Json.UpdateNumber("requests[0].addConditionalFormatRule.rule.gradientRule.minpoint.color.green","0.2")
loo_Json.UpdateNumber("requests[0].addConditionalFormatRule.rule.gradientRule.minpoint.color.red","0.8")
loo_Json.UpdateString("requests[0].addConditionalFormatRule.rule.gradientRule.minpoint.type","MIN")
loo_Json.UpdateNumber("requests[0].addConditionalFormatRule.rule.gradientRule.maxpoint.color.green","0.9")
loo_Json.UpdateString("requests[0].addConditionalFormatRule.rule.gradientRule.maxpoint.type","MAX")
loo_Json.UpdateInt("requests[0].addConditionalFormatRule.index",0)
loo_Json.UpdateString("requests[1].addConditionalFormatRule.rule.ranges[0].sheetId",ls_SheetId)
loo_Json.UpdateInt("requests[1].addConditionalFormatRule.rule.ranges[0].startRowIndex",10)
loo_Json.UpdateInt("requests[1].addConditionalFormatRule.rule.ranges[0].endRowIndex",11)
loo_Json.UpdateNumber("requests[1].addConditionalFormatRule.rule.gradientRule.minpoint.color.green","0.8")
loo_Json.UpdateNumber("requests[1].addConditionalFormatRule.rule.gradientRule.minpoint.color.red","0.8")
loo_Json.UpdateString("requests[1].addConditionalFormatRule.rule.gradientRule.minpoint.type","NUMBER")
loo_Json.UpdateString("requests[1].addConditionalFormatRule.rule.gradientRule.minpoint.value","0")
loo_Json.UpdateNumber("requests[1].addConditionalFormatRule.rule.gradientRule.maxpoint.color.blue","0.9")
loo_Json.UpdateNumber("requests[1].addConditionalFormatRule.rule.gradientRule.maxpoint.color.green","0.5")
loo_Json.UpdateNumber("requests[1].addConditionalFormatRule.rule.gradientRule.maxpoint.color.red","0.5")
loo_Json.UpdateString("requests[1].addConditionalFormatRule.rule.gradientRule.maxpoint.type","NUMBER")
loo_Json.UpdateString("requests[1].addConditionalFormatRule.rule.gradientRule.maxpoint.value","256")
loo_Json.UpdateInt("requests[1].addConditionalFormatRule.index",1)
// Adds the "Authorization: Bearer ACCESS_TOKEN" header.
loo_Http.AuthToken = "ACCESS_TOKEN"
loo_Http.SetRequestHeader("Content-Type","application/json")
loo_Resp = create oleobject
li_rc = loo_Resp.ConnectToNewObject("Chilkat.HttpResponse")
li_Success = loo_Http.HttpJson("POST","https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}:batchUpdate",loo_Json,"application/json",loo_Resp)
if li_Success = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_Json
destroy loo_Resp
return
end if
Write-Debug "Status code: " + string(loo_Resp.StatusCode)
Write-Debug "Response body:"
Write-Debug loo_Resp.BodyStr
destroy loo_Http
destroy loo_Json
destroy loo_Resp