Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I have a couple of Parameters that does not refreshing after the first time using. in other words, it is a date range parameter, that update a startmonth and EndMonth parametes, but If I choose antoher option from Date range parameters the other ones do not change. the Startmonth and endmonth it is a query with a @daterange parameter.
It seems like the issue you're facing is with the dynamic update of the parameters. To resolve this issue, you can try the following:
Re-run the query when the date range parameter changes. You can achieve this by setting the "Refresh Automatically" option to "On Change" in the data source properties.
Use a DAX expression to dynamically update the start month and end month parameters. You can use the following expression in the StartMonth and EndMonth parameters:
StartMonth:= MIN(@daterange) EndMonth:= MAX(@daterange)
Filter(MyTable, [DateColumn] >= MIN(@daterange) && [DateColumn] <= MAX(@daterange))
This way, when the date range parameter changes, the filtered data in the StartMonth and EndMonth parameters will also be updated.
I hope this helps you resolve the issue you're facing. Let me know if you need further assistance.
User | Count |
---|---|
13 | |
3 | |
2 | |
2 | |
2 |