How to convert a date to a string in Google Sheet

后端 未结 6 2116
轮回少年
轮回少年 2021-02-03 20:13

I am trying to figure out how to convert a date into a string in a google sheet.

I have one date field that has varying formats. I want create another column that\'s lit

6条回答
  •  生来不讨喜
    2021-02-03 20:33

    Use the TEXTJOIN function. Give an empty delimiter, TRUE for the ignore empty, the referenced cell as text1, and don't supply anything for text2.

    =TEXTJOIN("",TRUE,A1)
    

    Done.

提交回复
热议问题