Ask
26
@merged_cells ·

Why merged cells cause so much trouble, and the setting that gives you the look without the damage

The hostility is not aesthetic. A merged cell breaks a set of operations that everything downstream depends on.

What it actually breaks

  • Sorting. A range containing merged cells either refuses to sort or scrambles, because the sort has no way to move a cell that spans several rows.
  • Filtering. A merged header or a merged value makes the filter treat the block as one entry, so rows silently disappear from the results.
  • Selecting a column. Ctrl with an arrow stops at the merge, so keyboard navigation and any macro that walks the data stops early.
  • Formulas and pivots. The value lives in the top-left cell only; the rest are genuinely empty. So a lookup finds a blank, a sum is short, and a pivot rejects the range for having no header.
  • Copy and paste into a differently shaped range, which errors rather than doing something sensible.

What to use instead

  • Center across selection. In the alignment options, horizontal alignment. It looks identical to a merge across columns and changes nothing structurally. This is the answer for almost every case.
  • For vertical grouping, repeat the value in every row and use conditional formatting to hide the repeats visually. The data stays complete and the sheet reads the same.
  • For a title above the data, put it in one cell and widen the column or just leave it. Nobody has ever complained about a title that is not centred.

Where a merge is fine: a presentation sheet that nothing reads from, at the very end of the process. If a human is the only consumer, merge freely.

8 answers Share
Report

Answering anonymously, a moderator will review it first.

  • @center_across · 3w ago · 2 replies

    Center across selection is the whole answer and almost nobody knows it exists, because it is buried in a dialog rather than on the toolbar next to the merge button.

    That placement is the entire reason merged cells are everywhere. One is a button you see a hundred times a day and the other is three clicks into a menu. If you set up sheets for other people, put center across on the quick access bar and you will fix the habit for everyone who uses them.

    24
    Share
    Reply

    Answering anonymously, a moderator will review it first.

    Report
    • @named_ranges_nils · 2w ago

      Center across selection also survives copy and paste into other sheets, which merges do not do cleanly.

      11
      Share
      Reply

      Answering anonymously, a moderator will review it first.

      Report
  • @inherited_the_sheet · 3w ago · 2 replies

    The one that costs the most time and is not in the list: merged cells break structured references and table formatting, so you cannot turn the range into a proper table, which is what unlocks half the useful features in the first place.

    So a merge does not only break sorting today. It stops you from ever upgrading the sheet.

    20
    Share
    Reply

    Answering anonymously, a moderator will review it first.

    Report
    • @merged_cells · 3w ago

      And people then conclude tables do not work for their data, when the actual problem is four merges in the header.

      12
      Share
      Reply

      Answering anonymously, a moderator will review it first.

      Report
  • @merge_has_a_use · 3w ago · 2 replies

    Defending merges in exactly one place: the final output sheet that gets printed or pasted into a document.

    Once nothing computes from it and nothing sorts it, a merge is just formatting. The mistake is merging in the working sheet, where somebody will later try to filter it.

    The rule I use: merges are allowed downstream of the data, never inside it. Keep them in a separate presentation tab that reads from the clean sheet.

    17
    Share
    Reply

    Answering anonymously, a moderator will review it first.

    Report
    • @print_layout_only · 2w ago

      Agreeing with the printed-output exception and narrowing it further: do it in a copy, not in the working sheet. The moment somebody needs a number out of the printed version, the merges are in the file everybody uses.

      15
      Share
      Reply

      Answering anonymously, a moderator will review it first.

      Report
  • @inherited_the_sheet · 3w ago

    A lookup returning blank instead of an error is the worst possible failure. Silent and wrong.

    7
    Share
    Reply

    Answering anonymously, a moderator will review it first.

    Report
  • @merged_cells · 3w ago

    The invisible one is that only the top-left cell holds the value and the rest are truly empty. That is why a lookup returns a blank rather than an error, and a blank is much harder to notice than a failure.

    1
    Share
    Reply

    Answering anonymously, a moderator will review it first.

    Report