In Excel 2010, I want cell A1 to have the same value as cell A2. So I set a formula in A1:
=B1
that works fine if B1 has a value. But, if B1 is empty, then A1 shows "0". I want A1 to be empty if B1 is empty.
As a workaround, I'm using the following formula in A1:
=IF(B1="", "", B1)
Is there an easier and more elegant way to set a cell to the same value as other cell? (without VBA)