在Powerquery

时间:2016-07-07 21:31:18

标签: powerquery excel-2016

上下文:在Excel 2016中使用Powerquery(Get& Transform)从REST API接收数据,该API仅接受content-type:application / json。 HTTP POST请求的内容存储在excel表中,该表将转换为POST内容的JSON。

如果我使用以下示例:https://msdn.microsoft.com/en-us/library/mt637075.aspx

Request = Text.FromBinary(Json.FromValue([A={1, true, "3"}, B=#date(2012, 3, 25)])) 

它返回错误:

Expression error: The name 'Json.FromValue' wasn't recognized.  Make sure it's spelled correctly.

Excel 2016中内置的Powerquery版本是否可能缺少此功能?如果是这样,还有另一种方法可以在Powerquery中将数据转换为JSON吗?

1 个答案:

答案 0 :(得分:1)

您需要更新Excel 2016.最新的更新包含Json.FromValue。