英文:
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,
I would like to read this date value in Excel General format as below,
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]))
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论