EOMONTH question

  • Thread starter Thread starter Guest
  • Start date Start date
If you have the Analysis ToolPak add-in installed:
try this:
=EOMONTH(TODAY(),-1)+1

If you don't....try this:
=TODAY()-DAY(TODAY())+1

Does that help?
--------------------------

Regards,

Ron (XL2003, Win XP)
Microsoft MVP (Excel)
 
If you have the Analysis ToolPak add-in installed:
try this:
=EOMONTH(TODAY(),-1)+1

If you don't....try this:
=TODAY()-DAY(TODAY())+1

Does that help?
--------------------------

Regards,

Ron (XL2003, Win XP)
Microsoft MVP (Excel)

Try,

format cell with formula =NOW() as Mmm

This will only give you the first 3 character of the month
 
2 different questions. Not sure which you want answered, so you get both.
EOMONTH question
EOM can be stated as day zero of the following month:
=DATE(YEAR(NOW()), MONTH(NOW())+1, 0)
What formula do I use to give me the begining of the present month.
BOM can be stated as day one of the current month:
=DATE(YEAR(NOW()), MONTH(NOW()), 1)


HTH,
 
Back
Top