The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Small issue with " in power query
i have a parameter for Datacenter - and it is passed into this line of my power query
vBaseUrl = "https://" & Datacenter & ".mycompany.com",
works perfect
I want to have a parameter for apikey, but I can't figure out, how to do that.
This is my working code: vHeaders = [ #"apikey"="xxxxxxx"],
How do i replace the xxxxxxx with a parameter? I tried
vHeaders = "[ #"apikey"="" & parameterapikey & ""]",
Solved! Go to Solution.
This did the trick for me
vHeaders= [#"apikey" = apikey ],