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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
akashgera
Helper I
Helper I

Creating global variable and referencing it in power query

Hello Folks,

I need your help in creating a global variable which will store a text value (known as access token), which will be used to assign a value to the headers in the Web.Contents function in my power query, As I am doing this because my access token expires in every 1 hour and I need to generate it manually via POSTMAN and have to replace that value in all queries as the data source for all queries are same i.e. web service, So I need to replace the access token value in all my queries every time I regenerate it which will takes a lot of time.

So, in order to replace the values in each query and I want to create a global variable which will store my text value and can work dynamically in all my queries and that needs to be changed at a single place rather than changing it everywhere. 

I want expected result like below:-

 

let

Source = Json.Document(Web.Contents("URL", [Headers=[Authorization="variable"]]))

in 

source

1 ACCEPTED SOLUTION
wdx223_Daniel
Community Champion
Community Champion

just create a independent qurey, say MyToken, and let it return the token text

then you can reference MyToken as variable everywere.

View solution in original post

2 REPLIES 2
wdx223_Daniel
Community Champion
Community Champion

just create a independent qurey, say MyToken, and let it return the token text

then you can reference MyToken as variable everywere.

Thank you so much for your response, I have followed your instructions and my global variable is woking fine.

People like you are much needed in this Pbi community, Kudos to you and your skillset !!👍

Much Appreciated 🙂

 
 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors