Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

AZhappyjack

Suspended
Original poster
Jul 3, 2011
10,183
23,662
Happy Jack, AZ
How do I convert a date

TODAY()

to a text string in Numbers? I cannot find any text string functions...

I need to concatenate text with the date to get "Today is TODAY()" in a cell...
 
How do I convert a date

TODAY()

to a text string in Numbers? I cannot find any text string functions...

I need to concatenate text with the date to get "Today is TODAY()" in a cell...

Nevermind... going back to Excel. Numbers has too be the most brain dead application that Apple (or anyone else, for that matter) has ever concocted... it's pure evil.
 
Brute force for TODAY():

Code:
"Today is "&MONTH(TODAY())&"/"&DAY(TODAY())&"/"&YEAR(TODAY())

For "Today is 8/7/2023"

Code:
"Today is "&NUMTOBASE(MONTH(TODAY()),10,2)&"/"&NUMTOBASE(DAY(TODAY()),10,2)&"/"&NUMTOBASE(YEAR(TODAY()),10,4)

For "Today is 08/07/2023
 

Attachments

  • fmt.png
    fmt.png
    20.2 KB · Views: 51
How do I convert a date

TODAY()

to a text string in Numbers? I cannot find any text string functions...

I need to concatenate text with the date to get "Today is TODAY()" in a cell...
  • LEFT(TODAY(),12) = string representation verified by T function in next column
  • CONCAT(TODAY()," DAVE")
  • TODAY()& " DAVE"
I cannot find any text string functions...
Double click function cell:

Screenshot 2023-08-08 at 7.19.22 AM.png


Nevermind... going back to Excel. Numbers has too be the most brain dead application that Apple (or anyone else, for that matter) has ever concocted... it's pure evil.
I prefer Numbers to Excel. Have not used Excel in 10 or 15 years.
Although, I am brain dead.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.