0

How Do i make a Blank Cell = Empty. Instead of = 0 ? But Also make sure the Cells with Data = the data?


Sheet1 A2:

=Sheet2!A2

Which Gives me a "0"

I want that Zero to be blank. But if that Cell on Sheet 2 isn't blank, then i want it to give me the Data that's in the cell on Sheet 2.

Thank

Steve
  • 1
  • 3

1 Answers1

2

You can test for blanks first:

=IF(Sheet2!A2="","",Sheet2!A2)

If you know the cells should contain text rather than numbers, you can just use:

=Sheet2!A2&""
Rory
  • 29,268
  • 5
  • 28
  • 31