LibreOffice calc 有 toString 函数吗?

LibreOffice calc 有 toString 函数吗?

我在一个单元格中有一个数据,其格式为1999/02/20。我想使用 concanate 函数将其转换为+1999/02/20T00/00/00。是否有可以使用的 toString 函数?

答案1

您可以使用 TEXT 函数,以下操作将单元格 A1 中的数字 1999/02/20 转换为字符串 1999/02/20:

TEXT(A1, "yyyy/mm/dd")

相关内容