Forum Discussion
SU_IN
2 years agoNew Member
DAX code to Filter column 'does not start with' a specific text
Hi, I am trying to write a measure in DAX with CALCULATE function with a filter for a column - count the rows that does not start with 'SAMPLE'. Can someone write DAX code here to filter for 'does ...
- Anonymous2 years ago
CALCULATE(
[SalesAmount],
FILTER( NOT CONTAINSSTRING( 'Table'[ColumnName], 'SAMPLE') )
)
CONTAINSSTRING function (DAX) - DAX | Microsoft Learn
Anonymous
2 years agoNot applicable
CALCULATE(
[SalesAmount],
FILTER( NOT CONTAINSSTRING( 'Table'[ColumnName], 'SAMPLE') )
)
CONTAINSSTRING function (DAX) - DAX | Microsoft Learn
SU_IN
2 years agoNew Member
Hello Thomas,
Thanks, It worked!.