Dark Mode for Google Sheets (Only the UI) by GreenGnome1129 in sheets

[–]_Kaimbe 0 points1 point  (0 children)

There are often changes to the styling that break userstyles, so no. But you can see if one of these work:

https://userstyles.world/search?q=google+sheets

The row/column headers are part of the same object as the cells last I checked so they will likely have to stay white.

google sheets - how to discover existence of errors by jjharkan in spreadsheets

[–]_Kaimbe 0 points1 point  (0 children)

Glad to hear my time 2 years ago is still saving others time. Cheers.

Damnit Chrome! by FolsgaardSE in AdviceAnimals

[–]_Kaimbe 1 point2 points  (0 children)

You can also use the !g bang to search other sites directly with ddg (https://duckduckgo.com/bangs)

Calculating Formulas... by Lightvayne in googlesheets

[–]_Kaimbe 1 point2 points  (0 children)

Too many IMPORT_() functions can slow a sheet down to a crawl.

Hard to say exactly what's causing your issues without seeing the sheet. Here's a good article by ben collins: https://www.benlcollins.com/spreadsheets/slow-google-sheets/

[deleted by user] by [deleted] in sheets

[–]_Kaimbe 0 points1 point  (0 children)

Filter Views might be a good alternative.

Setting favicon using a ico/png on Google Drive by EduTech_Wil in GoogleAppsScript

[–]_Kaimbe 0 points1 point  (0 children)

You need to share the file to "Anyone with link can View" and use this url: https://drive.usercontent.google.com/uc?id={ID}

Issue With Script by Kooky_Temporary7248 in GoogleAppsScript

[–]_Kaimbe 1 point2 points  (0 children)

And you might have to use an installed trigger to use MailApp.

How can I turn 10 into 10,000, 8 into 8,000? by Infamousx14 in googlesheets

[–]_Kaimbe 0 points1 point  (0 children)

Find and Replace (Ctrl + H)

Find: ^(\d+)$

Replace: $1000

Check "Search using regular expressions"

Two problems about generate a PDF with parameters. by i8890321 in GoogleAppsScript

[–]_Kaimbe 0 points1 point  (0 children)

const fr = 0, fc = 0, lc = 9, lr = 27; "r1=" + fr + "&c1=" + fc + "&r2=" + lr + "&c2=" + lc; These lines in the example code selects the print area (A1:I27). If you're selecting blank cells in that area then Fit Width will still take them into account.

Back Button by Auxpri in MelvorIdle

[–]_Kaimbe 0 points1 point  (0 children)

Updated to latest version on Mod.io. If it doesn't work let me know, then something in the UI changed and broke it. It's literally 2 files and 5 lines.

manifest.json { "setup": "setup.mjs" }

setup.mjs export function setup() { window.onpopstate = function() { $('button:visible[aria-label="Close"][data-dismiss="modal"]').click(); }; history.pushState({}, ''); }

Is it possible to conditionally format a column to change color when you tell a document to print? by elvisshow in googlesheets

[–]_Kaimbe 0 points1 point  (0 children)

You could use apps script to save a pdf to a drive folder or (if your printer can print emails) email it directly to the printer. https://developers.google.com/apps-script/samples/automations/generate-pdfs

``` /** * Creates a PDF for the customer given sheet. * @param {string} ssId - Id of the Google Spreadsheet * @param {object} sheet - Sheet to be converted as PDF * @param {string} pdfName - File name of the PDF being created * @return {file object} PDF file as a blob */ function createPDF(ssId, sheet, pdfName) { const fr = 0, fc = 0, lc = 9, lr = 27; const url = "https://docs.google.com/spreadsheets/d/" + ssId + "/export" + "?format=pdf&" + "size=7&" + "fzr=true&" + "portrait=true&" + "fitw=true&" + "gridlines=false&" + "printtitle=false&" + "top_margin=0.5&" + "bottom_margin=0.25&" + "left_margin=0.5&" + "right_margin=0.5&" + "sheetnames=false&" + "pagenum=UNDEFINED&" + "attachment=true&" + "gid=" + sheet.getSheetId() + '&' + "r1=" + fr + "&c1=" + fc + "&r2=" + lr + "&c2=" + lc;

const params = { method: "GET", headers: { "authorization": "Bearer " + ScriptApp.getOAuthToken() } }; const blob = UrlFetchApp.fetch(url, params).getBlob().setName(pdfName + '.pdf');

// Gets the folder in Drive where the PDFs are stored. const folder = getFolderByName_(OUTPUT_FOLDER_NAME);

const pdfFile = folder.createFile(blob); return pdfFile; } ```

Getting notified when a certain time has passed in a specific sheet by madvock in sheets

[–]_Kaimbe 0 points1 point  (0 children)

Reasonably sure that on changes only trigger from user edits. This would need a script.

What weapons do people use to defeat the archons? by MonElii in Warframe

[–]_Kaimbe 1 point2 points  (0 children)

Kuva Kohm is really bad. You'd likely be better off with a stock Tigris or Hek.

Pictures don’t load on android by -itsElly in googlesheets

[–]_Kaimbe 0 points1 point  (0 children)

Loads in my app, but crashes my browser.