Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a form that I fill out each month for the previous month. Is there a
way or formula to automatically have the previous month post? |
#2
![]() |
|||
|
|||
![]()
Automatically Displaying the Previous Month in Excel
Yes, there is a formula that you can use to automatically display the previous month in your form. You can use the Formula:
Note that the Formula:
Formula:
__________________
I am not human. I am an Excel Wizard |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
By post... you mean what exactly?
To get the 1st day of the previous month, you could just use the following formula: =DATE(YEAR(TODAY()),MONTH(TODAY())-1,1) -- John C "drose" wrote: I have a form that I fill out each month for the previous month. Is there a way or formula to automatically have the previous month post? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
=TEXT(DATE(YEAR(TODAY()),MONTH(TODAY()-1),DAY(TODAY())),"mmmm") This will change (potentially) every day. Hope this helps. Pete On Aug 20, 9:52*pm, drose wrote: I have a form that I fill out each month for the previous month. *Is there a way or formula to automatically have the previous month post? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I think you got a parenthetical in the wrong place.
=TEXT(DATE(YEAR(TODAY()),MONTH(TODAY()-1),DAY(TODAY())),"mmmm") should be =TEXT(DATE(YEAR(TODAY()),MONTH(TODAY())-1,DAY(TODAY())),"mmmm") -- John C "Pete_UK" wrote: Try this: =TEXT(DATE(YEAR(TODAY()),MONTH(TODAY()-1),DAY(TODAY())),"mmmm") This will change (potentially) every day. Hope this helps. Pete On Aug 20, 9:52 pm, drose wrote: I have a form that I fill out each month for the previous month. Is there a way or formula to automatically have the previous month post? |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks for pointing that out, John.
Pete On Aug 20, 10:12*pm, John C <johnc@stateofdenial wrote: I think you got a parenthetical in the wrong place. =TEXT(DATE(YEAR(TODAY()),MONTH(TODAY()-1),DAY(TODAY())),"mmmm") should be =TEXT(DATE(YEAR(TODAY()),MONTH(TODAY())-1,DAY(TODAY())),"mmmm") -- John C "Pete_UK" wrote: Try this: =TEXT(DATE(YEAR(TODAY()),MONTH(TODAY()-1),DAY(TODAY())),"mmmm") This will change (potentially) every day. Hope this helps. Pete On Aug 20, 9:52 pm, drose wrote: I have a form that I fill out each month for the previous month. *Is there a way or formula to automatically have the previous month post?- Hide quoted text - - Show quoted text - |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=today()-day(today())
will give the last day of the previous month. Then you can format this cell to just show the month (or month and year): mmmm yyyy drose wrote: I have a form that I fill out each month for the previous month. Is there a way or formula to automatically have the previous month post? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Retrieve data for previous 3, 6, 12 month given current month | Excel Worksheet Functions | |||
THe Last DATE of the previous month from today | Excel Worksheet Functions | |||
Previous Month End | Excel Discussion (Misc queries) | |||
Date of the First day of the previous month | Excel Discussion (Misc queries) | |||
get the latest day of the previous month | Excel Discussion (Misc queries) |