Get the Month Name From a Date
Your order log has full dates, but the monthly revenue report needs a clean month label next to each row — "July", not "2026-07-08" and not just the number 7.
Excel & Google Sheets
This formula works in both Excel and Google Sheets.
How it works
TEXT formats a date using a pattern you choose, and "mmmm" is the code for the full month name — a date anywhere in July becomes "July". Use "mmm" for the short form "Jul", and "mmmm yyyy" for "July 2026" when your data spans years and July 2025 must not merge with July 2026. The catch to remember: the result is text, not a date, so it sorts alphabetically (April before February) and won't feed date math. Keep the real date column for sorting and pivots, and use the TEXT column purely as a label. MONTH(A2) is the numeric cousin — it returns 7, which sorts correctly but reads worse.
When to use it
Use it to label rows for monthly sales summaries, invoice aging reports grouped by month, or dashboard headers — anywhere a human-readable month beats a raw date.
Common mistakes
Did this formula help?
Engine-verified against the sample data aboveDownload the proof sheet (.xlsx)Last reviewed 2026-07-09