在 Power Query 中相对于位置编号访问行

Access row relatively with position number in Power Query

我有这个数据源https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=MSFT&interval=1min&apikey=demo

我想select "Time Series (1min)"然后先从中记录——因为时间变了然后“1.打开​​”。

我尝试使用这个查询

= Json.Document(Web.Contents("https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=MSFT&interval=1min&apikey=demo"), 1250)
= Source[#"Time Series (1min)"]{0}[#"1. open"]

但我得到:

Expression.Error: We cannot convert a value of type Record to type List.
Details:
    Value=Record
    Type=Type

这对我没有帮助 http://excel-inside.pro/blog/2015/11/05/absolute-and-relative-references-in-power-query/ 我认为问题可能在于我在引用第一行时得到的是 null。

尝试:

let
Source = Json.Document(Web.Contents("https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=MSFT&interval=1min&apikey=demo"), 1250),
#"Time Series (1min)" = Source[#"Time Series (1min)"],
#"Converted to Table" = Record.ToTable(#"Time Series (1min)"),
Value = #"Converted to Table"{0}[Value]
in
Value