#num error if negative value.

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

I have the following formula that gives me a #num error
when one of my cell reference is negative?

Any ideas how to the value without making the result or
the cell reference positive?

=IF(ISBLANK(M25),"",(Q25/M25)^(1/4)-1)
m25 q25
1.14 -0.73


Thanks a million! Really need this!

Dave
 
One way:

=IF(M25="","",IF(Q25/M25>=0,(Q25/M25)^(1/4)-1,"-1+" & ABS(Q25/M25)^(1/4)
& "i^(1/2)"))
 

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