Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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 ],