Display value from another workbook, if less than display a blank

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to display the value of a cell from another workbook. If the cell
from the other worksheet is empty or the value is "0" then I want to display
a blank cell rather than a "0"
 
Hi,

Use a if statement and isn't blank "<>"

Adapt the formula to your sheet name and cell ref

=IF([Book2]Sheet5!$C$7<>"",[Book2]Sheet5!$C$7,"")

VBA Noo
 
aldutson said:
I want to display the value of a cell from another workbook. If the cell
from the other worksheet is empty or the value is "0" then I want to
display
a blank cell rather than a "0"

=IF(OR(ISBLANK([Book2]Sheet1!$A$1),[Book2]Sheet1!$A$1=0),"",[Book2]Sheet1!$A$1)
 

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

Back
Top