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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is 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
Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 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.

Top Solution Authors