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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! 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
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.

Top Solution Authors