Skip to content

Instantly share code, notes, and snippets.

@Olshansk
Olshansk / Slider.html
Last active July 26, 2025 12:24
Google Sheets Slider Add-on
<!DOCTYPE html>
<html>
<head>
<script>
function sliderValue(value){
console.log("sliderValue", value)
google.script.run.updateCellValue(value, 1, 1);
}
</script>
</head>