The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
User | Count |
---|---|
11 | |
8 | |
6 | |
6 | |
6 |
User | Count |
---|---|
24 | |
14 | |
13 | |
10 | |
7 |