Numbers will not copy between worksheets

P

pharrett

I have an Excel workbook with two worksheets. One named Assests and the
other named Print. Users enter data on the assets sheet and then run a
macro that prints out the 'Print' sheet in a certain way. I have cells
on the Print sheet linked to cells on the Assets sheet with a formula
like this one:

=IF(Assets!B10>"",(""&Assets!B10&""),"")

This works great unless the value entered is just a number. If it's
just a number with no letters, the value from the Assets sheet does not
show in the corresponding cell on the Print sheet.

Anyone have any ideas why this happens? It's XL2k BTW.

Thanks
 
S

Sara Jane

Your formula was testing for a string (used >""), therefore test for empty
cell to return either a value or string.

=IF(ISBLANK()Assets!B10,"",Assets!B10)

Hope this helps. Rob

pharrett said:
I have an Excel workbook with two worksheets. One named Assests and the
other named Print. Users enter data on the assets sheet and then run a
macro that prints out the 'Print' sheet in a certain way. I have cells
on the Print sheet linked to cells on the Assets sheet with a formula
like this one:

=IF(Assets!B10>"",(""&Assets!B10&""),"")

This works great unless the value entered is just a number. If it's
just a number with no letters, the value from the Assets sheet does not
show in the corresponding cell on the Print sheet.

Anyone have any ideas why this happens? It's XL2k BTW.

Thanks
creating financial statements
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top