Adding a month to a referenced cell

solo9999

Board Regular
Joined
May 23, 2011
Messages
82
Hi all,

Deceiving title I know, but here's the breakdown:

I have a list with dates in A2, format is 7/1/2011

I also have a formula in A3 which references to A2:

=UPPER(TEXT(A2,"mmm")&" - DEC")

The A3 output is 'JUL-DEC'

Is there a way to amend the A3 formula so it will add a month to whatever is in A2? In other words, if A2 is 7/1/2011 then A3 would display 'AUG-DEC'?

!Thanks!
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Probably a better way of doing it but try:

Code:
=UPPER(TEXT((MONTH(A2)+1)* 30,"mmm")&" - DEC")
 
Upvote 0

Forum statistics

Threads
1,224,604
Messages
6,179,857
Members
452,948
Latest member
UsmanAli786

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top