如何读取Excel通用格式中的日期值

huangapple go评论63阅读模式
英文:

How to read the date value in Excel General format

问题

我试图从一个TSV文件中读取一个日期数据"01FEB22",并且它看起来像下面的屏幕截图所示,

我想在Excel中以"常规"格式读取此日期值,如下所示,

44593是日期值"01/02/2022"的等效"常规"格式。有没有办法在Power Query中以常规格式读取日期值?请建议。

英文:

I am trying a read a date data "01FEB22" from a TSV file, and it read like in below screenshot,

如何读取Excel通用格式中的日期值

I would like to read this date value in Excel General format as below,

如何读取Excel通用格式中的日期值

44593 is the equivalent "General" format of the date value "01/02/2022". Is there a way to read the date value in General format in Power Query? Please advise.

答案1

得分: 1

你需要确保将"01FEB22"首先转换为日期数据类型。 (将会得到类似01/02/2022的值)
然后使用以下公式添加一个自定义列。

= Number.ToText(Double.From([last_month]))

英文:

You will need to make sure the "01FEB22" must be converted to Date datatype first. (Will give you value like 01/02/2022)
Then add a custom column with this formula.

= Number.ToText(Double.From([last_month]))

如何读取Excel通用格式中的日期值

huangapple
  • 本文由 发表于 2023年2月24日 12:45:32
  • 转载请务必保留本文链接:https://go.coder-hub.com/75552716.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定