我当前正在Google表格中构建仪表板,并且遇到了一个一致的问题,即日期显示为与日期格式相反的数字。例如:Variant.create(size_name: "XL")
与43626
相对。
此数据从表单中拉到数据库中,然后查询到仪表板电子表格中,并以与可读日期格式相反的数字顺序进行传递。目前,尝试使用6/11/19
重新格式化,并尝试将单元格重新格式化为仪表板和数据库位置中的日期格式,但是没有运气。
//我尝试过的
DATEVALUE
=TargetCell
43626
=DATEVALUE(TargetCell)
43626
//重新格式化为任何日期格式
=TargetCell
我期待着以下
43626
=DATEVALUE(TargetCell)
OR:
6/11/19
//重新格式化为任何日期格式
=TargetCell
答案 0 :(得分:0)
您弄错了...函数 DATEVALUE
从 43626
创建 6/11/2019
< / p>
如果要撤消该操作,则需要使用以下任一方法:
TEXT
公式如下:=TEXT(43626, "m/d/yy")
QUERY
参数format
,例如:=QUERY(A:B, "format A 'm/d/yy'", 0)
QUERY
参数toDate
,例如:=QUERY(A:B, "toDate(A)", 0)
https://developers.google.com/chart/interactive/docs/querylanguage#top_of_page