Forum Discussion
Pronocalme
1 year agoFrequent Visitor
Web V2 connection problem
Hello everyone ! I've created a dashboard using a data source from an advanced Web connection, but when I publish this dashboard, the connection becomes a Web connection (and not Web V2 as it sho...
- 1 year ago
Hello,
I recreated my report from scratch and my problem solved itself, without any change in PowerQuery. Thanks for the help !
Pronocalme
1 year agoFrequent Visitor
Hello,
Thank you ChatGPT and Ibendlin for your replies but it still doesn't work, I can't specify in PowerBI desktop that I want to use a Web V2 connection.
Here is my query :
let
Source = Csv.Document(Web.Contents(
"my-api-endpoint",
[
Headers = [
Authorization = "Bearer " & BearerToken
]
]
),
[Delimiter=",", Columns=9, Encoding=65001, QuoteStyle=QuoteStyle.None])
in
Source