Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I have two tables in a dataset which have a relationship between them. I have modelled this relationship using the DAX NATURALINNERJOIN function. I want to create a parameter so that when I run the report I can filter the data by location. However, when I run the report the parameter drop down list is empty and no values can be selected. I have included my DAX Query below which runs correctly when executed within the Query Designer. I have also included screenshots to show my report parameter properties. If anyone has any solutions to this problem it would be greatly appreciated.
DAX Script shown below:
EVALUATE
FILTER(SELECTCOLUMNS(NATURALINNERJOIN( comOrganisations,WorkRequests),
"Name", [Name],
"Work Request ID", [WorkRequestID],
"Schedule Status", [Schedule Status],
"EstimatedStartDate (bins)", [EstimatedStartDate (bins)],
"Weekly Report", [Weekly Report],
"EstimatedStartDate",[EstimatedStartDate], RSCustomDaxFilter(@comOrganisationsName,EqualToCondition,[comOrganisations].[Name],String)),
[EstimatedStartDate (bins)] >= DATEVALUE("03/01/2022") + TIMEVALUE("03/01/2022") &&
[EstimatedStartDate (bins)] <= DATEVALUE("31/01/2022") + TIMEVALUE("31/01/2022") )
Hi @Conorw15 ,
When you design a report, report parameters are saved in the report definition. When you publish a report, report parameters are saved and managed separately from the report definition.
For a published report, you can use the following:
Report parameter properties. Change report parameter values directly on the report server independently from the report definition.
Report subscriptions. You can specify parameter values to filter data and deliver reports through subscriptions.
For more information,you can refer to: Report parameters in Power BI Report Builder
Hope it helps,
Community Support Team _ Caitlyn
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
7 | |
2 | |
2 | |
2 | |
1 |
User | Count |
---|---|
6 | |
5 | |
5 | |
3 | |
2 |