I unfortunately discovered today that I cannot use SQL to return a subset of records when Power BI references a SQL Server DB as a data source. I'm trying to do something similar to a SQL where clause using "IN"
for example
SELECT (*) FROM Table1
WHERE column_name IN ('a','b','f')
I've tried this (and several other variations) in DAX but get an error for Token Literal Expected:
Table.SelectRows(Table1, each (List.Select({'a','b','f'}) as [column_name])
Is there a way to accomplish this in DAX?