Dear Tech Community,
I am trying to use Wrangling Data Flow to perform transformation on a csv file host in my azure blob storage.
However every time I add the source data set that target my csv file and hit ok I receive the following message when power query online is launch:
Please specify how to connect.
I then click on Configure Connection
I have then 3 choice for Connection Kind: Anonymous, Basic, Organizational Account
Anonymous and Organizational Account (when clicking Sign In) always give the same error:
We encountered an unexpected error.
section Section1;
shared ABC_Finance = let
AdfDoc = Web.Contents("https://.blob.core.windows.net/data/ABC/ABC_Finance1.txt?sv=2018-03-28&sig=xlEVzRExQJ8hgVc%2B0ZOSpXJpV73bgrGqTJjGnnfYjkc%3D&spr=https&se=2020-12-22T06%3A20%3A52Z&srt=sco&ss=bf&sp=rwl"),
Csv = Csv.Document(AdfDoc, [Delimiter = ",", Encoding = TextEncoding.Utf8, QuoteStyle = QuoteStyle.Csv])
in
Csv;
shared UserQuery = let
Source = ABC_Finance
in
Source;
I don't know what am I doing wrong. All those data and transformation are happening in the same Storage Account.
if someone can help thanks.





