Skip to playerSkip to main content
  • 3 weeks ago
Learn how to make crossword puzzle in Google sheet this. will also answer a question to how do you make a crossword puzzle in Google sheet or how can I make my own word search puzzle? And answer to how do you make a custom crossword puzzle?

Here are the steps outlawing the video.
1) Select cross word puzzle grid
2) Ctrl + H
3) In "Find" enter ^\s*$
4) In "Replace with" enter =CHAR(RANDBETWEEN(65,90))
5) Check "Match case"
6) Check "Search using regular expressions"
7) Replace all
8) Done

Here the breakdown of a regular expression (RegEx).
^\s*$

The term, ^\s*$, is a regular expression pattern often used in programming and text processing. Let's break down what this pattern means:

^: This symbol represents the beginning of a line or string.

\s*: This part of the pattern represents any whitespace character (like spaces or tabs), and the * indicates that there can be zero or more occurrences of whitespace.

$: This symbol represents the end of a line or string.

When combined, the ^\s*$ pattern represents an empty line, i.e., a line that contains only whitespace characters (spaces, tabs, etc.) or is completely blank.

If you were to use this pattern in the "Find and Replace" feature of Google Sheets:

"Find": ^\s*$
"Replace with": [whatever you want to replace the empty lines with]
Using this pattern, Google Sheets would search for empty lines (lines that consist only of whitespace) in your spreadsheet and replace them with the text you specify in the "Replace with" field.



Here's a breakdown of the formula.
=CHAR(RANDBETWEEN(65,90))

RANDBETWEEN(65,90): This function generates a random whole number between 65 and 90, inclusive. The numbers 65 and 90 correspond to the ASCII values of the uppercase letters 'A' and 'Z' in the English alphabet.

CHAR(...): The CHAR function takes a numeric value (an ASCII code) as its argument and returns the corresponding character. For example, CHAR(65) returns the character 'A', CHAR(66) returns 'B', and so on.

So, when you combine these two functions in the formula =CHAR(RANDBETWEEN(65,90)):

RANDBETWEEN(65,90) generates a random number between 65 and 90.
CHAR(...) converts the random number into a character based on its ASCII value.
Overall, this formula generates a random uppercase letter from 'A' to 'Z' each time you recalculate the worksheet or update the cell containing the formula.

How do you make a crossword puzzle in Google Sheets?,How can I make my own word search puzzle?,How do I create a word search puzzle in Excel?,How do you make a hard word puzzle?, How do you make a custom crossword puzzle?,
Transcript
00:00Are you interested in a small additional project to create some extra income?
00:04If so, consider crafting a crossword puzzle book utilizing Amazon KDP, and here's a guide
00:09on how you can accomplish using Google Sheet.
00:11You have this sheet here, and let's enter some word banks here.
00:20After that, select the crossword puzzle grid like this, and press Ctrl H.
00:24For find what, enter the following regular expression.
00:27The caret represent the beginning of line or string, backward slash asterisks represent
00:31white space characters like tabs or spaces, and dollar sign represent the end of line
00:36or string.
00:37For replace weight, enter the following formula.
00:38The formula generates a random uppercase letter by creating a random number between 65 to 90,
00:43S key value of A to Z, using random between, and char converts the number into a character
00:48given the random letter.
00:50Please just check on match case, and check on search using regular expression.
00:55Place all, and done, and you're completed.
Be the first to comment
Add your comment

Recommended