Difference in values

  • Thread starter Thread starter ayeFayze
  • Start date Start date
A

ayeFayze

Have a column with many numbers, need difference between low value and high
value, while ignoring zeros...can this be done? thx.
 
Try this array formula which cannot use the entire column and must be
entered using ctrl+shift+enter

=MAX(IF(O1:O100<>0,O1:O100))-MIN(IF(O1:O100<>0,O1:O100))
 
=MAX(IF(A1:A1000<>0,A1:A1000))-MIN(IF(A1:A1000<>0,A1:A1000))

this is an array formula and must be entered with CNTRL-SHFT-ENTER
rather then just
ENTER
 

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