The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 not start with'
Thanks.
Solved! Go to Solution.
CALCULATE(
[SalesAmount],
FILTER( NOT CONTAINSSTRING( 'Table'[ColumnName], 'SAMPLE') )
)
CONTAINSSTRING function (DAX) - DAX | Microsoft Learn
CALCULATE(
[SalesAmount],
FILTER( NOT CONTAINSSTRING( 'Table'[ColumnName], 'SAMPLE') )
)
CONTAINSSTRING function (DAX) - DAX | Microsoft Learn
Hello Thomas,
Thanks, It worked!.
CALCULATE(
[SalesAmount],
FILTER( NOT ('Table'[ColumnName] = 'SAMPLE')
)
Hi,
Thanks.
But this one will remove (Filter) only the one with SAMPLE.
But I have SAMPLE 1, SAMPLE ABC, SAMPLE Country etc.
I want to remove everything that start with SAMPLE.
User | Count |
---|---|
81 | |
81 | |
37 | |
34 | |
31 |
User | Count |
---|---|
94 | |
80 | |
60 | |
50 | |
49 |