Skip to content

Instantly share code, notes, and snippets.

View TechNerdXp's full-sized avatar
🏠
Working from home

Muhammad Nadeem TechNerdXp

🏠
Working from home
View GitHub Profile
@tamirko
tamirko / gotoCell.js
Last active March 23, 2024 16:53
How to go to a specific cell in a Google sheet ?
function onOpen()
{
var menuEntries = [{name: "Go to", functionName: "goToCell"}];
SpreadsheetApp.getActiveSpreadsheet().addMenu("MyUtils", menuEntries);
}
function goToCell()
{
var strRange = Browser.inputBox("Insert the required cell (e.g.: B351):", Browser.Buttons.OK_CANCEL);
if(strRange != "cancel")

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database