A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Not the most elegant solution, but try this one.
=LET(mirror,HSTACK(A1:D24,A1:D24,A1:D24),IF(mirror<>0,mirror,""))
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
In Excel, I have data in A1:D24. In E1 I have =A1:D24 to mirror that range.
Question 1) I'm calling that mirroring, but what's the technical term for that?
Question 2) I want to mirror A1:D24 three times across the columns; is there a more efficient method than putting =A1:D24 in each of E1, i1, & M1?
Question 3) The mirrors display 0 in cells that are empty in the source range; how do I instead have the mirrors display empty cells as empty?
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Not the most elegant solution, but try this one.
=LET(mirror,HSTACK(A1:D24,A1:D24,A1:D24),IF(mirror<>0,mirror,""))
AI answer
A1:D24 is an A1-style range reference.0 values are expected when a direct link formula points to blank source cells. If the goal is only to make those mirrored blanks appear empty, use this display setting:
IF formula can return an empty string instead of 0, for example:
=IF(A1="","",A1)
For a date-formatted cell, this also avoids showing 1/0/1900 when the source is blank.References: