PowerQuery use a cell values in a URL
问题 I have the following PowerQuery code. Which collects some data from MSFT in yahoo finance. I have a cell A1 for example which I would like to put MSFT , GOOG or another symbol. How can I change it so that when I change A1 it will automatically redownload for the new symbol? let Quelle = Web.Page(Web.Contents("https://finance.yahoo.com/q/bs?s=MSFT+Balance+Sheet&annual")), Data = Quelle{1}[Data], FirstRowHeader = Table.PromoteHeaders(Data) in FirstRowHeader Using; $A$1 did not work. https:/