Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
stefanik
Helper I
Helper I

Variables with blank kusto source

Hi all,

i'm new to Power BI. I have a data source that is a Kusto query that extract data from an ApplicationInsight db.

Is there a way to customize the AppInsight repo url inside the blank query?

I've tryed with parameters this way:

 

1) create a param with the appInsight repo url:

 

appRepo = www.blablabla.com

 

2) in the advanced query editor, i've changed the row:

 

let Source = Json.Document(Web.Contents(" .... the url source ... ",

 

with

 

let Source = Json.Document(Web.Contents("&appRepo&",

 

..... but no luck!!! I receive an URI parse error!!!

 

Thanks

1 ACCEPTED SOLUTION
Mariusz
Community Champion
Community Champion

Hi @stefanik 

 

Try this

appRepo ="www.blablabla.com"
let Source = Json.Document(Web.Contents( appRepo,

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
Mariusz Repczynski



View solution in original post

2 REPLIES 2
Mariusz
Community Champion
Community Champion

Hi @stefanik 

 

Try this

appRepo ="www.blablabla.com"
let Source = Json.Document(Web.Contents( appRepo,

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
Mariusz Repczynski



Hi Mariusz,

thanks a lot. This way seems to work! 

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.