mdeora
mdeora

Reputation: 4534

How to get output of today() function as string in google sheet

I want to append quote to the date value which i receive from =today()-1 function.

Expected output is eg. - "30/05/2018"

Upvotes: 0

Views: 55

Answers (1)

mdeora
mdeora

Reputation: 4534

Could Achieve with below -

=CONCATENATE(CHAR(34),TO_TEXT(today()),CHAR(34))

Upvotes: 1

Related Questions