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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
michellepace
Resolver III
Resolver III

Use parameter (defined in power query) in calculated dax column?

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

1 ACCEPTED SOLUTION
Arklur
Resolver II
Resolver II

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"

 

View solution in original post

3 REPLIES 3
v-lionel-msft
Community Support
Community Support

Hi @michellepace ,

 

Unless you load the parameters into the data model.

Right click the parameter in 'Edit Query' -> Check the ‘Enable load’ option.

v-lionel-msft_0-1596591993834.png

 

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.

Arklur
Resolver II
Resolver II

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"

 

amitchandak
Super User
Super User

@michellepace , I doubt that. It will not be visible.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.