Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

How to pass parameter to a DAX Query

Hi all,

I am working on building a report that uses a Power BI Data Source. I need to be able to pass a parameter to the DAX Query. I am not able to get this to work. Any ideas how this is done?

 

Thank you!

 

Seyed

  • Hi Anonymous ,

     

    To pass a parameter to a DAX query in Power BI, you can use the SELECTEDVALUE function. This function allows you to returns the value when the context for columnName has been filtered down to one distinct value only.

    You can create a table and then bind a column field to your parameter. Binding a field to a parameter means that as the selected field value changes, the value passes to the parameter and updates the query that references the parameter.

     

    Best Regards,

    Jianbo Li

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

2 Replies

  • Hi Anonymous ,

     

    To pass a parameter to a DAX query in Power BI, you can use the SELECTEDVALUE function. This function allows you to returns the value when the context for columnName has been filtered down to one distinct value only.

    You can create a table and then bind a column field to your parameter. Binding a field to a parameter means that as the selected field value changes, the value passes to the parameter and updates the query that references the parameter.

     

    Best Regards,

    Jianbo Li

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

  • Anonymous's avatar
    Anonymous
    Not applicable

    Thank you so much Jianbo for your assistance!