Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
71 | |
67 | |
51 | |
39 | |
26 |
User | Count |
---|---|
87 | |
54 | |
45 | |
40 | |
36 |