Formula to calculate month of last status update

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

Hi all,

Had a question about creating a formula. The following is an example
of the data I have:

Month of last status MonthsSinceUpdate

11
2
0
7
7
0
0
4
4

I have a formula to calculate how many months since the last update,
but is there a way I can create a formula so it can automatically
determine what month that is based on the current month? Any
suggestions?

Thanks,
Chris
 
Sounds like a perfect solution for EDATE. If you have the Analysis
Toolpack installed, or Excel 2007.
 
Hi,

=MONTH(EDATE(TODAY(),-C1))

Where C1 contains your numbers below. EDATE is an analysis toolpak function
so you must attach it - Tools, Add-ins, and check Analysis ToolPak
 
If I understand....

=TEXT(DATE(2008,MONTH(NOW())-A1,1),"mmmm")

Copy down as needed

Based on your data these are the results:

11 = November
2 = August
0 = October
7 = Match
4 = June
 
If I understand....

=TEXT(DATE(2008,MONTH(NOW())-A1,1),"mmmm")

Copy down as needed

Based on your data these are the results:

11 = November
2 = August
0 = October
7 = Match
4 = June

--
Biff
Microsoft Excel MVP









- Show quoted text -

Thanks for the help! Got it to work!

-Chris
 
You're welcome!

--
Biff
Microsoft Excel MVP


If I understand....

=TEXT(DATE(2008,MONTH(NOW())-A1,1),"mmmm")

Copy down as needed

Based on your data these are the results:

11 = November
2 = August
0 = October
7 = Match
4 = June

--
Biff
Microsoft Excel MVP









- Show quoted text -

Thanks for the help! Got it to work!

-Chris
 

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

Back
Top