Power Query: 借助List.Numbers和Text.PadStart函数,将数据区间展开成序列清单

2023-12-13 08:45:28 浏览数 (1)

文章背景: 在工作中,有时需要将数据区间的内容展开,从而方便后续的进一步分析,

示例:单元格区域的单行内存在数据区间(下图左),想要基于这个数据区间,展开成序列(下图中),从而方便后续的数据分析。

解决思路: 先分列,然后借助List.Numbers函数得到列表,接着使用Text.PadStart函数,得到4位数字,最后再合并。

(1)List.Numbers

Return a list of numbers given an initial value, count, and optional value.

(2)Text.PadStart

Returns text of a specified length by padding the start of the given text.

视频演示:

参考资料:

[1] [10 重点函数及应用_03:Text.From_PadStart_PadEnd及简略区间转为数据清单]

0 人点赞