官方说明:
返回一个列表,其元素是从输入列表投影而来。将collectionTransform函数应用到每个元素,且调用resultTransform函数来构造结果列表。collectionSelector具有签名(x as Any) => ... 其中x是列表中的元素。 resultTransfo[......]
国内首个M语言分享博客
返回一个列表,其元素是从输入列表投影而来。将collectionTransform函数应用到每个元素,且调用resultTransform函数来构造结果列表。collectionSelector具有签名(x as Any) => ... 其中x是列表中的元素。 resultTransfo[......]
在table的指定列中将oldValue替换为newValue。
Table.ReplaceValue( table as table, oldValue as any, newValue as any, replacer as function, columnsToSearch a[......]
使用指定的组合程序函数将指定的列组合为一个新列。
Table.CombineColumns( table as table, sourceColumns as list, combiner as function, column as text) as table
合[......]
通过对在参数transformOperations中指定的列应用转换操作(其中格式为{column name,transformation}),从输入table中返回一个表。如果此列不存在,将引发异常,除非可选参数defaultTransformation指定备用值(例如, Missi[......]
根据column和hash函数的值,将table分区为一组groups个表。hash函数应用于column行的值,以获取该行的哈希值。哈希值模数 groups 确定要将该行放入所返回的哪个表中。
table:要分区的表。
column:要执行哈希运算以确定该行位于返回的哪个表中的列[......]
给定一对表示属性-值对的列,将属性列中的数据旋转为列标题。
Table.Pivot( table as table, pivotValues as list, attributeColumn as text, valueColumn as text, optional aggrega[......]
按为每行指定的列key中的值对table的行进行分组。对于每个组,将构造一条记录,其中包含键列(及其值)以及由aggregatedColumns指定的任何聚合列。注意,如果多个键与比较器匹配,将返回不同的键。此函数无法保证返回固定的行顺序。或者,也可以指定groupKind和compa[......]