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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi
Using Power BI Dax query from Power BI shared data set which is created in Power BI desktop report.
Dax query used in paginated report dataset as below sample. I have to pass parameter from 'Calander'[Year] to summrized datset dax query to filter by year.
can you please let me know how do i pass parameter to dax query below. it does not look rscustomfilter not working which is only for report query builder.
Thanks
// DAX Query
DEFINE
MEASURE Table'[abc] =
(/* USER DAX BEGIN */
CALCULATE(
max(Table'[abc]),ALLEXCEPT(Table,Table'[abc]))
/* USER DAX END */)
VAR __DS0Core =
SUMMARIZECOLUMNS(
'Account'[AccountId],
'Depa'[Name],
'Calander'[Year],
"SumAmount", CALCULATE(SUM(Table'[amount])),
RSCustomDaxFilter(@Year,EqualToCondition,'Calander'[Year],String)
)
EVALUATE
__DS0Core
ORDER BY
Account'[AccountId],
'Depa'[Name],
Solved! Go to Solution.
I have managed to solve this multip parameter values passing.
apply Rscustomer fileter at dataset properites section
inplace of TREATAS({@Year}, 'FiscalPeriod'[FiscalYear])
below is the correct format code for Rscustom filter
RSCustomDaxFilter(@Year,EqualToCondition,[FiscalPeriod].[FiscalYear],String).
Please note that if you apply at query level, it won't work . Make sure replace treats command with Rs custom filter at query properites of data set.
It is strange that after applying above steps, you notice query still has treats command and rscustomfilter at query properties.
this trick works.
Hoep this helps
I have managed to solve this multip parameter values passing.
apply Rscustomer fileter at dataset properites section
inplace of TREATAS({@Year}, 'FiscalPeriod'[FiscalYear])
below is the correct format code for Rscustom filter
RSCustomDaxFilter(@Year,EqualToCondition,[FiscalPeriod].[FiscalYear],String).
Please note that if you apply at query level, it won't work . Make sure replace treats command with Rs custom filter at query properites of data set.
It is strange that after applying above steps, you notice query still has treats command and rscustomfilter at query properties.
this trick works.
Hoep this helps
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 11 | |
| 10 | |
| 8 | |
| 6 | |
| 6 |
| User | Count |
|---|---|
| 25 | |
| 22 | |
| 19 | |
| 17 | |
| 10 |