Subtotal

J

John

How do I get a subtotal when the data I am Subtotaling contains #n/a without
returning an answer of #n/a.


I am using =SUBTOTAL(9,M6:M199)/SUBTOTAL(9,P6:p199)/1440

This formula takes total time in seconds divided by total calls divided by
1440 and the cell is formated to time. The answer should return a time in
minutes and seconds; however, it returns #n/a. How would I get the formula to
ignore the #n/a in the data set that it is calculating?
 
G

Glenn

John said:
How do I get a subtotal when the data I am Subtotaling contains #n/a without
returning an answer of #n/a.


I am using =SUBTOTAL(9,M6:M199)/SUBTOTAL(9,P6:p199)/1440

This formula takes total time in seconds divided by total calls divided by
1440 and the cell is formated to time. The answer should return a time in
minutes and seconds; however, it returns #n/a. How would I get the formula to
ignore the #n/a in the data set that it is calculating?

Can you get rid of the #N/A result that is causing the problem? What is the
formula in that cell or cells?
 
J

John

The cell that contains#N/A is the following formula:

=IF(ISBLANK(B168:B168)," ",VLOOKUP(B168,STATS!D:N,11,FALSE))

I would like to make the above formula return an empty value. The above
formula is searching in a database for a name. That name does not exist in
the database therefor it returns the #N/A. I would prefer that it just return
nothing.
 
G

Gord Dibben

Change the VLOOKUP formula.

=IF(ISNA(VLOOKUP(B168,STATS!D:N,11,FALSE)),"",VLOOKUP(B168,STATS!D:N,11,FALSE))

Note: "" which is blank " " returns a space.


Gord Dibben MS Excel MVP
 
A

Ashish Mathur

Hi,

You could try something like this as well:

=(sumif(M6:M199,">=-9.99999E307")/sumif(P6:p199,">=-9.99999E307"))/1440

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com
 

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

Top