KEEP CELL VALUE UNLESS IT IS -0.15 THEN ENTER 0.00

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

Guest

I am trying to create a formula that will keep the cell value from another
workbook but if the value in the cell in -0.15, then change it to 0.00. I
did get it to change the -0.15 to 0.00, but if it is more than -0.15, it does
not return the cell value from the other workbook. I would appreciate any
help. Thanks,
 
I am trying to create a formula that will keep the cell value from another
workbook but if the value in the cell in -0.15, then change it to 0.00. I
did get it to change the -0.15 to 0.00, but if it is more than -0.15, it does
not return the cell value from the other workbook. I would appreciate any
help. Thanks,

=IF([Book2]Sheet2!$A$1=-0.15,0,[Book2]Sheet2!$A$1)

or

=([Book2]Sheet2!$A$1<>-0.15)*[Book2]Sheet2!$A$1


--ron
 

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