如何在 Power Query 中将 Unix 日期时间转换为秒数
How to convert Unix date time into seconds in Power Query
如果我有这样的专栏
我如何将它转换成秒?
- 在 PowerQuery 中将列的类型更改为 Date/Time
- 使用公式添加自定义列
= ([business_duration] - #datetime(1970,1,1,0,0,0)) * 24 * 60 * 60
- 将新列的类型更改为整数
如果我有这样的专栏
我如何将它转换成秒?
- 在 PowerQuery 中将列的类型更改为 Date/Time
- 使用公式添加自定义列
= ([business_duration] - #datetime(1970,1,1,0,0,0)) * 24 * 60 * 60
- 将新列的类型更改为整数