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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
TonyRojas
New Member

Can USERPRINCIPALNAME be applied in Powquery so that a User only views the database that correspond?

Created 1 query to get the parameters of a user table called T_Usuarios. This user table T_Usuarios, has the columns: [IdUser], [Stage], [Server] and [NameDataBase]. How do you apply USERPRINCIPALNAME in Power Query, to be able to connect the user with the database that they should have access to?
Query to get parameters:

let

    // Usar la tabla importada desde Excel llamada T_Usuarios

    Usuarios = T_Usuarios,

    // Reemplazar por el nombre de usuario actual para pruebas locales

    CurrentUser = USERPRINCIPALNAME(), // Simulación para pruebas en Power BI Desktop

    UserRecord = Table.SelectRows(Usuarios, each [Name] = CurrentUser){0},

    varStage = UserRecord[Stage],

    varServer = UserRecord[Server],

    varDatabaseName = UserRecord[Nombre de la base de datos]

in

    [

        txtStage = varStage,

        txtServer = varServer,

        txtDatabaseName = varDatabaseName

    ]

1 ACCEPTED SOLUTION

No, USERPRINCIPALNAME() is a DAX function that is not available during the ETL (data load) process in Power Query.

 

If your data source is a SSAS type live connection then it is possible to pass credentials through.

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

My solution works. 

Anonymous
Not applicable

I've set something up like this. First, you have to have A data model set up in order to use the userprincipalname function. So I just made a table with today's date that loaded to the date model. Then I added the userprincipalname function to the data model, and loaded the result to a page in Excel. I then used that cell with the user principal name as the source of a new query, which you can then use as a filter/parameter/whatever you like. It's important that you set that query to load upon opening the file, so that the current user's user principal name is ready when you refresh the rest of the data.

 

--Nate

TonyRojas
New Member

I have created 1 query to obtain the parameters of a user table called T_Usuarios. This user table T_Usuarios, has the columns: [IdUser], [Stage], [Server] and [NameDataBase]. How do I apply USERPRINCIPALNAME in Power Query, in order to connect the user to the database that they should have access to? Query to get parameters:
let
// Use the imported table from Excel called T_Usuarios
Users = T_Usuarios,
// Replace with the current user name for local testing
CurrentUser = USERPRINCIPALNAME(), // Simulation for testing in Power BI Desktop
UserRecord = Table.SelectRows(Usuarios, each [Name] = CurrentUser){0},
varStage = UserRecord[Stage],
varServer = UserRecord[Server],
varDatabaseName = UserRecord[Database Name]
in
[
txtStage = varStage,
txtServer = varServer,
txtDatabaseName = varDatabaseName
]

No, USERPRINCIPALNAME() is a DAX function that is not available during the ETL (data load) process in Power Query.

 

If your data source is a SSAS type live connection then it is possible to pass credentials through.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 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
Top Kudoed Authors