=TODAY()

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello from Steved


=TODAY()

My issue is this I would like use the above as mmm-yy, yes I've formatted my
cell to do this and it does exactly as it is supposed to do, However I want
to do this for every month for example in Cell "A15" I've got Jun-07 but
would like to have the previous month ie May-07, then in Cell "A14" I want
Apr-07, then in Cell "A13" to Cell "A4" until I have the whole year entered
please. How would I go about this.

Thankyou.
 
With A15 = today() in a14 =(A15)-30. Grab handle and drag it up. works but
be careful to check as 30 might not be always a good count :)
 
Hello Toppers

Ive got in Cell "A1" =TODAY() ( Jun-07 )

Now in Cell "A15" I've entered "A1-30" to give me May-07 Cell formatted as
mmm-yy

What Would I put in Cell "A14" to give me Apr-07 please

Thanks for your time.
 
Try this formula in all of your cells, A4 through A15.

=DATE(YEAR($A$1),MONTH($A$1)-16+ROW(),DAY($A$1))

HTH,
Elkar
 
Try this:

The formula below is required Analysis Toolpak Add-ins

A15 =EDATE($A$1,ROW()-16)

Drag the Fill Handle up as far as needed
 

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