Type =TODAY() in any cell and it immediately shows today's date. If it shows a serial number instead of a recognisable date, the cell is formatted as General or Number — select the cell and apply a Date format to fix the display. TODAY is genuinely most useful when combined with other formulas rather than used on its own. Subtract a past date from TODAY to count elapsed days — the result must be formatted as Number not Date to show a day count. Add a number to TODAY to get a future date — TODAY()+30 is exactly 30 days from today. Compare a date column to TODAY using IF to create live status labels that update without intervention. Use TODAY as the end_date in
DATEDIF to calculate ages and tenures that update automatically. Use COUNTIF with TODAY as part of the criteria to count past-due or upcoming items dynamically. One important limitation: TODAY recalculates when the file is opened, not in real time while the file is already open. If you need real-time updating within a session, use
NOW() instead, which includes the current time and recalculates on every workbook calculation.