Reputation: 4534
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
Reputation: 4534
Could Achieve with below -
=CONCATENATE(CHAR(34),TO_TEXT(today()),CHAR(34))
Upvotes: 1