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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
srigag900
Frequent Visitor

Parameterizing python codes in power query Advance editor

Hello Folks,

 

I have a python code which needed to be parameterized in power bi . You can see the below python code . I have three parameters called user, pw and server_address

 

from tableau_api_lib import TableauServerConnection
from tableau_api_lib.utils.querying import get_views_dataframe

username = "" & user & ""'
password = '"" & pw & ""'
server = '"" & server_address & ""'

tableau_server_config_ft = {
    'my_env': {
        'server': server ,
        'username': username,
        'password': password
    }
}  

conn = TableauServerConnection(tableau_server_config_ft, env='my_env')
conn.sign_in()

 

But If i put my credentials in the code as it is, this works. 

Can somebody help me regarding this? 

2 REPLIES 2
amitchandak
Super User
Super User

@srigag900 , You should be able to use M parameters here

https://learn.microsoft.com/en-us/power-query/power-query-query-parameters

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandak 

 

Yes. I m using three parameters. but cannot embed this in to  python code.

 

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.