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
Sophie_
Frequent Visitor

How to parameter connexion to Big Query

Hello,

 

i have this connexion :

 

let
Source = GoogleBigQuery.Database(),
#"my_project" = Source{[Name="my_project"]}[Data],
Schema = #"my_project"{[Name="my_dataset",Kind="Schema"]}[Data],
my_dataset.kpi_Table = Schema{[Name="_kpi",Kind="Table"]}[Data]
in
my_dataset.kpi_Table

 

How to put a parameter for #"my_project" ?

1 ACCEPTED SOLUTION
dufoq3
Super User
Super User

Hi @Sophie_, #"my_project" is only step name. You should focus on this part:

 

let
Source = GoogleBigQuery.Database(),
#"my_project" = Source{[Name="my_project"]}[Data],
Schema = #"my_project"{[Name="my_dataset",Kind="Schema"]}[Data],
my_dataset.kpi_Table = Schema{[Name="_kpi",Kind="Table"]}[Data]
in
my_dataset.kpi_Table

 

wich you can replace with your parameter without quotes:

 

#"my_project" = Source{[Name=myParameter]}[Data],

 

If you need additional assistance - be more specific please. What kind of parameter do you have/need. How exactly do you want to use such parameter. Add at least some screenshots data where you want to use it etc.


Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Sophie_ 

Did the solution dufoq3 offered help you solve the problem, if it helps you can consider to accept it as a solution so that more user can refer to.

 

Best Regards!

Yolo Zhu

 

dufoq3
Super User
Super User

Hi @Sophie_, #"my_project" is only step name. You should focus on this part:

 

let
Source = GoogleBigQuery.Database(),
#"my_project" = Source{[Name="my_project"]}[Data],
Schema = #"my_project"{[Name="my_dataset",Kind="Schema"]}[Data],
my_dataset.kpi_Table = Schema{[Name="_kpi",Kind="Table"]}[Data]
in
my_dataset.kpi_Table

 

wich you can replace with your parameter without quotes:

 

#"my_project" = Source{[Name=myParameter]}[Data],

 

If you need additional assistance - be more specific please. What kind of parameter do you have/need. How exactly do you want to use such parameter. Add at least some screenshots data where you want to use it etc.


Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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 Kudoed Authors