Age Avg

B

Brian

I need to have the avg age of a columum. I currently using this formula to
calc the age =DATEDIF(C96,NOW(),"y") & "y, " & DATEDIF(C96,NOW(),"ym") & "m,
" & DATEDIF(C96,NOW(),"md") & "d"

I need the avg to output in this way of the formula above
 
M

mangesh_yadav

Find the average of the column C, and then use the formula:

=DATEDIF(AVERAGE(C1:C96),NOW(),"y") & "y, " &
DATEDIF(AVERAGE(C1:C96),NOW(),"ym") & "m, " &
DATEDIF(AVERAGE(C1:C96),NOW(),"md") & "d"

Mangesh
 

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