
2 answers
I couldn't find in Salesforce Docs how it is being calulated, but you can "roll your own" by creating a custom formula field:
IF(IsClosed,(
CloseDate - DATEVALUE(CreatedDate)),
NOW() - CreatedDate)
I would create this field and see if there is a diff and where