Current Month minus 1 month

brandon16

Board Regular
Joined
Sep 29, 2014
Messages
133
Hi,

I need a formula to display current month minus 1 month.

I looked at using the =today() function but this won't be consistant.
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Do you mean like this?

=TEXT(DATE(YEAR(TODAY()),MONTH(TODAY())-1,DAY(TODAY())),"mmmm")
 
Upvote 0
Hi!

If you want the current date minus 1 month, you can use this formula:
=EDATE(TODAY(),-1)

If you want only the current month minus 1:
=TEXT(EDATE(TODAY(),-1),"mmmm")

Blessings!

 
Upvote 0
Assuming you want the result today to be "August" try this formula

=TEXT(TODAY()-DAY(TODAY()),"mmmm")

or if you want the month number of last month (i.e. 8) then try this

=MOD(MONTH(TODAY())-2,12)+1
 
Upvote 0

Forum statistics

Threads
1,222,636
Messages
6,167,223
Members
452,104
Latest member
jadethejade

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