You can use something like:

Formula: copy to clipboard
=IF(Sheet2!A1="","",Sheet2!A1)


or, if the data is always alphanumeric, you can use:

Formula: copy to clipboard
=Sheet2!A1&""



If you use the second one with a numeric value, it will make it a text field. That is, it will still look like a number but it will be left aligned and some numeric calculations won't work.


Regards, TMS