• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Ageing formula

villival

Member
Hi Team,

i working on ageing fromuala

i have date and need to find age count i used if today formuale am getting error in applying the formulae and i need to results as 45 days like that depending up on the date

below formulae i used and i attached sample xls.. please help me
=IF(TODAY()-B2<=1;"<24 hours";IF(TODAY()-B2<=7;"2-7 days";IF(TODAY()-B2<=15;"08-15days";IF(TODAY()-B2<=30;"16-30 days";IF(TODAY()-B2<=60;"31-60 days";"over 60 days")))))
 

Attachments

  • ageing.xlsx
    8.4 KB · Views: 10
This should work:
=IF(INT(TODAY()-B8)<=0,"<24 Hours",
IF(INT(TODAY()-B8)<=7,"2-7 Days",
IF(INT(TODAY()-B8)<=15,"8-15 Days",
IF(INT(TODAY()-B8)<=30,"16-30 Days",
IF(INT(TODAY()-B8)<=60,"31-60 Days",
"Over 60 Days")))))
 

Attachments

  • ageing.xlsx
    9 KB · Views: 16
Back
Top