Help: Macro Button to update "Month"

wakefield101

New Member
Joined
Jan 4, 2014
Messages
31
Hi all,

I was wondering if I could receive help creating the following macro button. What I envision is a button that each time I click on it, it will automatically update my "Month" cell (cell D7) to the next month.

For example, if my "Month" cell is currently showing Jan-2016, then once I click on this button, Jan-2016 will update to Feb-2016.

Does anyone know how to code this?
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Is the entry in D7 formatted as Date or Text?
An easy way to tell is to see if this formula returns TRUE or FALSE
=ISNUMBER(D7)

Once we know if it is a Date or Text, we will know how to best approach it.
 
Upvote 0
OK. This macro would do that:
Code:
Sub AddMonth()
    Range("D7") = DateAdd("m", 1, Range("D7"))
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,246
Messages
6,170,999
Members
452,373
Latest member
TimReeks

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