HELP!!!!!!!!

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

Guest

How do I exclude empty cells when trying to average columns? I am doing a
large sheet of date differences and want to exclude any empty cells from the
calculations.
 
Well, the problem is that I do have the start date listed - but the end date
is blank. I am wanting an average of mowing cycles - I have a start date for
each cycle, but not an end date yet. Is there a way to find the average for
just those with an end date?
 
If your date difference is calculated in a separate cell, then test if no end
date and cell to blank.

You can then AVERAGE the date diff column

Column A = Start date
Column B = End date
Column C = Date difference:

=IF(B2="","",B2-A2)

AVERAGE column C

HTH
 

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