Age formulas in MS Excel
August 25, 2007 7:42 PM
Subscribe
I need to put some test score data into Excel that works with children's ages in years and months.
I have been working with some children to collect some research data. In order to work with my numbers I need to know how to be able to get Excel to see that 7.11 is actually seven years and eleven months.
How can I do this?
posted by chairish to computers & internet (5 comments total)
2 users marked this as a favorite
=+INT(A1)*12+(A1 - INT(A1))*100This will give you the total number of months represented by the datum in A1, which for 7.11 is of course 95. I assume that will work for you?
posted by cerebus19 at 7:58 PM on August 25, 2007