Forum Discussion
Swalker
3 years agoFrequent Visitor
WHERE Syntax Error - Query preparation failed. (Power BI Report Builder)
Hi, In Report Builder this statement works fine using ORDER BY : EVALUATE SUMMARIZECOLUMNS('ReferenceList'[Index],'ReferenceList'[Year], 'ReferenceList'[ClientType], 'ReferenceList'[Location...
R1k91
3 years agoSuper User
ORDERBY is a valid DAX query keyword whereas WHERE is not (it's a SQL keyword).
use filter or calculatetable to apply filter according to your needs.