无法识别 Text.InferNumberType 的 Expression.Error

Expression.Error for Text.InferNumberType wasn't recognized

我有一个函数,我想确定第一个数字之后的所有数字是否都是数字。为此,我想我可以使用 Text.InferNumberType,根据 the documentation,如果文本不是数字,应该会引发错误。

这是我的代码片段:

a= Text.Start(Argument,1),
b= Text.End(Argument, Text.Length(Argument) - 1),
c= try Text.InferNumberType(b) otherwise "FALSE" , 

相反,我得到这个 Expression.Error 上面写着:

Expression.Error: the name Text.InferNumberType wasn't recognized. Make sure it's spelled correctly.

我从参考文档中直接复制并粘贴了函数名称,所以我确信它拼写正确。

我在 Excel 2013 年使用 PowerQuery。大约一周前使用从 Microsoft 下载的最新版本安装了 PowerQuery。我搜索并找到了 this question - 我想知道这是否是一个类似的问题?我在文档中没有看到任何说明此功能在某些版本的 power query 中不可用的内容。

这可能是 Excel 2013 中不支持的旧函数。我建议使用具有类似功能的不同函数,例如 Number.From or Number.FromText