Type =rand(200,99) into a Word document and press Enter. The document will extend into 200+ pages with the following text across all pages: “The quick brown fox jumps over the lazy dog”

Weird, isn’t it?
Type =rand(200,99) into a Word document and press Enter. The document will extend into 200+ pages with the following text across all pages: “The quick brown fox jumps over the lazy dog”

Weird, isn’t it?
Previous post: World’s longest straight staircase has 699 steps
Next post: Freshly cut frog legs resemble human legs
{ 2 comments… read them below or add one }
It’s actually not weird at all. This is a very useful feature of Word that Word masters have used over the yearrs to save themselves lots of time. Rand stands for random, meaning it’s a function that generates random text for you. The particular sentence it chooses is one which contains all 26 letters of the alphabet. The 2 numbers you pass to the function correspond to how many paragraphs it should produce and how many sentences should be in each paragraph. Since you called the function with such high numbers it produced hundreds of pages of text. But try it with rand(3,2) and you’ll see it produces three paragraphs of 2 sentences each.
However, I believe that in the newest versions of Word, it behaves slightly differently.
Wow, thanks for explaining it inside-out!