Forum Discussion
Oliullah_Siddique
Feb 23, 2026Brass Contributor
Excel Formula
Greetings! In cell A1, I have used the formula =TODAY for date. But when I used the following formula, ="Date:"&" "&TODAY it becomes like A3 cell. I need the result as like as in cell A5. Please ...
- Feb 24, 2026
you need to convert the Date VALUE to a text format:
="Date: " & TEXT(TODAY(), "dd-mmm-yy")
m_tarler
Feb 24, 2026Bronze Contributor
you need to convert the Date VALUE to a text format:
="Date: " & TEXT(TODAY(), "dd-mmm-yy")
- Oliullah_SiddiqueFeb 24, 2026Brass Contributor
Thank you very much!