如何将 today() 函数的输出作为 google sheet 中的字符串
How to get output of today() function as string in google sheet
我想将引号附加到我从 =today()-1
函数收到的日期值。
预期输出是例如。 - “2018 年 5 月 30 日”
可以通过以下实现 -
=CONCATENATE(CHAR(34),TO_TEXT(today()),CHAR(34))
我想将引号附加到我从 =today()-1
函数收到的日期值。
预期输出是例如。 - “2018 年 5 月 30 日”
可以通过以下实现 -
=CONCATENATE(CHAR(34),TO_TEXT(today()),CHAR(34))