|
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
let
源 = Excel.CurrentWorkbook(){[Name="表1"]}[Content],
更改的类型 = Table.TransformColumnTypes(源,{{"时间段", type time}}),
添加小时 = Table.AddColumn(更改的类型, "hour", each Time.Hour([时间段]),type number),
添加归属时间段 = Table.AddColumn(添加小时, "归属时间段", each
if Number.IsEven([hour])
then Text.Format("#{0}:00",{[hour]})&"-"& Text.Format("#{0}:00",{[hour]+2})
else Text.Format("#{0}:00",{[hour]-1})&"-"& Text.Format("#{0}:00",{[hour]+1})),
删除的列 = Table.RemoveColumns(添加归属时间段,{"hour"})
in
删除的列 |
|