Challenge 1: Inserting a Sentence at the Start of a Flowing Document — Solution Walkthrough Setup: several paragraphs of placeholder text spanning more than one page, then a new sentence inserted at the very beginning. What happens: Every single paragraph that came after the insertion point shifts forward to make room for the new sentence — the text that used to start at the top of page 1 is now pushed slightly further down, and this shift cascades through the entire document. If the added sentence is long enough (or repeated several times), content that used to be comfortably on page 2 could get pushed onto page 3, and so on, potentially changing how many pages the whole document occupies. Why nothing needed to be manually adjusted: This is the direct, hands-on demonstration of this chapter's own central idea: Word has no fixed addresses for its content the way Excel has cell addresses like B7. There's no "paragraph 4" sitting at a permanently fixed position that would need its address updated — every paragraph's actual position on the page is simply a CONSEQUENCE of everything that comes before it in the one continuous stream of text. Adding content earlier in that stream automatically changes where everything later in the stream lands, because "where" something appears was never stored as a fixed value in the first place — it's recalculated purely from the flow of text up to that point, every time the document is edited or displayed. Notes: - This is the exact opposite of Excel's own cell model, where typing a new value into A1 does NOT cause every other cell's address to shift — B7 is still B7 regardless of what happens to A1. Word's flowing model and Excel's grid model handle "where is this content" in fundamentally different ways, which is precisely this chapter's point.