How do I eliminate zeros from my Excel database?

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

Guest

I would like to do some calculations with my database but do not want the
zeroes averaged in. Is there a way to eliminate all of the zeroes in my
spreadsheet?
 
Assume your database is called MyTable

=AVERAGE(IF(MyTable<>0,MyTable))

entered with ctrl + shift & enter

Regards,

Peo Sjoblom
 
Create another column using logical formula, which
eliminates cells with zero values. You can then use this
column without the zeros. Say the values in the database
column are in Column A and you want to eliminate cells in
Column A with zero cell values. Enter =IF(A1=0,"",A1),
say in Cell B1
 

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