Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am trying to write a formula that returns the results of 90 Days, 60 Days,
30 Days and Current based on outstanding invoices. I have an age of invoice cell that tells me the age of the invoice and i want to write a formula from that cell telling me from the current date which category they fall into. Any help would be appreciated. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(TODAY()-A190,"90 day",IF(TODAY()-A160,"60 day","30 day"))
-- Gary''s Student - gsnu200773 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I read your post slightly different to Gary"s Student.
cell that tells me the age of the invoice If by this you mean it contains the number of days old the Invoice is then try: =IF(E15<30,"Current",CEILING(E15+1,30)-30&" Days") If Gary"s Student is right and the cell contains a date then try: =IF(TODAY()-D15<30,"Current",CEILING(TODAY()-D15+1,30)-30&" Days") -- HTH Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "Kurt" wrote in message ... I am trying to write a formula that returns the results of 90 Days, 60 Days, 30 Days and Current based on outstanding invoices. I have an age of invoice cell that tells me the age of the invoice and i want to write a formula from that cell telling me from the current date which category they fall into. Any help would be appreciated. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I rank values in multiple subsets using a single formula? | Excel Discussion (Misc queries) | |||
Ranking values in multiple subsets using one single formula | Excel Discussion (Misc queries) | |||
Printing single pages from multiple worksheets in a single print job | Excel Discussion (Misc queries) | |||
Find Multiple instances of Single Criterion in Row & Return To a Single Col | Excel Worksheet Functions | |||
Multiple lookup in a single formula .. | Excel Worksheet Functions |