Forum Discussion
Anonymous
4 years agoNot applicable
Convert Tableau function into Power BI Dax
sum(if [AUDITOR]<>[Auditor Filter] then [NC] else 0 end ) / sum(if [AUDITOR]<>[Auditor Filter] then [APPEAR] else 0 end ) here AUDITOR = Auditor filter, and Auditor filter is used as Parameter . ...
Anonymous
4 years agoNot applicable
we didnt get the expected output, all values are blank.
v-chenwuz-msft
4 years agoCommunity Support
Hi Anonymous ,
It had to convert it without data, please share some sample data and expect result.
Or you can try this:
Measure =
DIVIDE(
SUMX( FILTER( ALL( 'Table' ), 'Table'[AUDITOR] <> [Auditor Filter] ), [NC] ),
SUMX( FILTER( ALL( 'Table' ), 'Table'[AUDITOR] <> [Auditor Filter] ), [APPEAR] )
)
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.