When using VLookup in Google Sheets, it is possible to search a specific column?
Answers in Spreadsheets | By Some Guy
Published
Last ReplyHere's an example that I used recently:=if(I2="-", "NULL", VLOOKUP(I2, {E$2:E41,B$2:B41}, 2,0))In Google Sheets, curly braces... August R. Garcia,
Here's an example th...
How to access conditional formatting in Google Sheets?
Answers in Spreadsheets | By Some Guy
Published
Last Reply1. Highlight the cells that you want to format2. Right Click --> Conditional Formatting August R. Garcia,
1. Highlight the cells th...
Converting URLs to domains and vice-versa?
Answers in Spreadsheets | By Some Guy
Published | Last Update
Last ReplySolutions Using Google Sheets Extract domain from subdomain Example input: howtogoaround.wordpress.com =RIGHT(REGEXEXTRACT(D25, "\..*... August R. Garcia,
Solutions Using Google Sh...
What is the easiest way to generate random passwords in Google Sheets?
Answers in Spreadsheets | By Some Guy
Published
Last ReplyHave also run into this issue over the last few years. You'd think there'd be an easy way to do this. Messed around with a few options below... August R. Garcia,
Have also run into this i...
[Google Sheets] How to get the first element of an array?
Answers in Spreadsheets | By Some Guy
Published
Last Reply// Get first element of an array=INDEX(SPLIT(B2, " | ", FALSE);1;1) August R. Garcia,
// Get first element of a...
Last ReplyCurly braces are used to combine ranges into arrays. [] August R. Garcia,
Curly braces are used to...
Last ReplyIf there is no usable/relevant GUI, this can also be done from the terminal with a looping BASH script like this: # Monitor GPU stats and usage... August R. Garcia,
If there is no usable/rel...
I downloaded a bunch of stock photos for testing. Is there a quick way to bulk rename in Bash (or something similar)?
Forum in Web Scraping, Data Analysis | By Some Guy
Published | Last Update
Last ReplyA script like run from the terminal or a Bash script works for this type of file renaming: INDEX=1; for i in *.jpg; do mv $i ${INDEX}_cover.jpg;... August R. Garcia,
A script like run from th...
I am new to Google Sheets. What functions should I know about?
Answers in Spreadsheets | By Some Guy
Published
Last ReplyHere are examples of a few very commonly used formulas:Replace substrings in spreadsheets: =SUBSTITUTE("Today is Monday", "Monday"... August R. Garcia,
Here are examples of a fe...
[Google Sheets] How to convert the string "1k" to the number 1,000?
Answers in Spreadsheets | By Some Guy
Published
Last ReplyTry this function:#Change 1.3k to 1300, etc.=((VALUE(substitute(A1, "k", "")))*1000)=((VALUE(substitute(I201, "k", "... August R. Garcia,
Try this function:#Change...
[Google Sheets] Convert cell contents to (basic) HTML?
Answers in Spreadsheets | By Some Guy
Published
Last ReplyThis seems to work:// 1. Wrap entire cell in a <p> tag, then use REGEXREPLACE to address newlines// 2. Replace newlines with the end of the prev... August R. Garcia,
This seems to work:// 1....
Is there a good way to split/divide cells in Google Sheets?
Answers in Spreadsheets | By Some Guy
Published
Last ReplyThere is a built-in split function here:https://support.google.com/docs/answer/3094136?hl=enFor your use case, this function should work:=SPLIT(A1, &q... August R. Garcia,
There is a built-in split...
How can I find the array element most similar to a string in a JavaScript array?
Answers in Scripting and Automation | By Some Guy
Published
Last ReplyOne potential approach is to use Levenshtein Distance. August R. Garcia,
One potential approach is...
Last Reply# Convert clocks subfolders from png to jpgconvert */*.png */*.jpgfor f in $(find */*.png); do echo $f to $f--.jpg convert $f $RANDOM-RANDOM-.jpg r... August R. Garcia,
# Convert clocks subfolde...
[Google Sheets] Does anyone know how to get a random number rounded to a certain interval?
Answers in Spreadsheets | By Some Guy
Published
Last ReplyTo get a random number in a range of 2k to 3k rounded to the nearest interval of 100: =round(randbetween(2000, 3000)*0.01)*100 August R. Garcia,
To get a random number in...
Generate insert statements from Google Sheets?
Forum in Spreadsheets | By Some Guy
Published | Last Update
Last ReplySomething along these lines should work: ="INSERT INTO " & A2 &" ("&join(", ", $B$1:$H$1)&")" & " VALUES " & "("... August R. Garcia,
Something along these lin...
In Google Sheets, can you set up conditional formatting based on the value of another cell?
Answers in Spreadsheets | By Some Guy
Published
Specifically, is it possible to highligh...
MoreI have a spreadsheet full of client orders. I'd like to be able to highlight rows if the deadline for that order is within three days from the cu...[Google Sheets] SUMIF cell is an even number?
Answers in Spreadsheets | By Some Guy
Published | Last Update
How to get a random character (alphanumeric plus basic symbols) in Google Sheets?
Answers in Spreadsheets | By Some Guy
Published | Last Update
Can you escape a cell's content in Google Sheets to sanitize data for an SQL query?
Answers in Spreadsheets | By Some Guy
Published
[Code] Script Editor function to create an insert statement from Google Sheets data?
Answers in Spreadsheets | By Some Guy
Published