Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello there.
I have defined a parameter FinancialYear_Start_Period in power query editor. I would like to use this parameter in a calcuated dax column. Is it possible?
Thank you, Michelle
Solved! Go to Solution.
You could load that parameter into a table, that way you will able to refer to that:
// Parameter1
10 meta [IsParameterQuery=true, Type="Number", IsParameterQueryRequired=true]
// ParamTable
let
Source = Parameter1,
#"Converted to Table" = #table(1, {{Source}}),
#"Changed Type" = Table.TransformColumnTypes(#"Converted to Table",{{"Column1", Int64.Type}}),
#"Renamed Columns" = Table.RenameColumns(#"Changed Type",{{"Column1", "Parameter"}})
in
#"Renamed Columns"
Hi @michellepace ,
Unless you load the parameters into the data model.
Right click the parameter in 'Edit Query' -> Check the ‘Enable load’ option.
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You could load that parameter into a table, that way you will able to refer to that:
// Parameter1
10 meta [IsParameterQuery=true, Type="Number", IsParameterQueryRequired=true]
// ParamTable
let
Source = Parameter1,
#"Converted to Table" = #table(1, {{Source}}),
#"Changed Type" = Table.TransformColumnTypes(#"Converted to Table",{{"Column1", Int64.Type}}),
#"Renamed Columns" = Table.RenameColumns(#"Changed Type",{{"Column1", "Parameter"}})
in
#"Renamed Columns"
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
73 | |
71 | |
38 | |
28 | |
26 |
User | Count |
---|---|
99 | |
88 | |
62 | |
42 | |
39 |