Viewing 3 posts - 1 through 3 (of 3 total)
One more DAX expression to try. Note that DATATABLE() has some limitations, e.g. TODAY() & NOW() can't be used as values.
Players = DATATABLE(
"Name",...
May 2, 2022 at 6:02 am
INCREDIBLEmouse (4/2/2015)
But - I was stunned by the use of underscores as source aliases.
cross apply (something) as _
cross apply (somethingelse) as...
June 14, 2016 at 5:53 pm
I would have used the COLLATE option to force the collation in the stored proc's WHERE clause, e.g.
SELECT Result = 'This fails'
WHERE 'abc' COLLATE SQL_Latin1_General_CP1_CI_AS
...
January 21, 2016 at 8:45 pm
Viewing 3 posts - 1 through 3 (of 3 total)