N Nelson Feb 11, 2005 #1 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
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
D Dave Peterson Feb 12, 2005 #2 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.
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.