powerquery公式:筛选的行这个表第三列数据保留两位小数
可以使用以下公式来筛选表中第三列数据并保留两位小数:
= Table.TransformColumns(#"PreviousStep",{{"Column3", each Number.Round(_,2), type number}})
其中,#"PreviousStep" 是指前一步的数据源,"Column3" 是指第三列数据的列名,Number.Round 函数是用来保留两位小数的。最后的 type number 是用来确保返回的值是数字类型。
原文地址: https://www.cveoy.top/t/topic/fPJ 著作权归作者所有。请勿转载和采集!