Pivot Table to Ignore N/As

  • Thread starter Thread starter Nelson
  • Start date Start date
N

Nelson

Hi, Does anyone know if it is possible to get a pivot table summary to
ignore N/As within a table when summing the data?

Nelson
 
I don't.

Maybe you could clean them up in the original data (if those cells are a
formula):

=if(iserror(yourformula),0,yourformula)

Or even use another column:

=if(iserror(b2),0,b2)

Then use that other column in the pivottable.
 

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