Forum Discussion
Heavy_Duty
Mar 14, 2020Copper Contributor
combine text with =today function
I want to combine the text string 'LAST OPENED ' with the =TODAY() function in a single cell. What is the proper syntax? I have tried the following in cell B1 which is formatted as General: 'LAST OP...
Abiola1
Mar 14, 2020MVP
="LAST OPENED"&" :"&" "&TEXT(TODAY(),"dd/mm/yyyy")
Click Enter... That will return
LAST OPENED: 25/03/2020
(For example)
Click Enter... That will return
LAST OPENED: 25/03/2020
(For example)
s31064
Feb 02, 2024Copper Contributor
No need for the second &, simply include the : in the quoted text in the beginning, like this:
="LAST OPENED: "&TEXT(TODAY(),"dd/mm/yyyy")
="LAST OPENED: "&TEXT(TODAY(),"dd/mm/yyyy")