I would like to name my excel sheet in English format. My system settings are in German and i can't change that. I need to get the previous month name in english. I used the below code and formula.
I also tried using custom date settings for one cell and assign the cell value to sheet name.But nothing working. Help me
Sub name()
ActiveSheet.Name = Format(DateAdd("M", -1, Now), "MMMM")
End Sub
Choose(MONTH(TODAY())-1, "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")
=TEXT(DATE(YEAR(TODAY());MONTH(TODAY())-1;DAY(TODAY()));"MMMM")