Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi,
I have a measure I've created that I need to slightly modify:
Solved! Go to Solution.
Hi @Anonymous
SEARCH("O", 'ClaimData'[ICD10 Mapping] ,,0) = 0
will exclude all values that contains "O"
Hi , @Anonymous
The "search "function is case insensitive. If you don’t require case sensitivity, you can try this function . When searching for "O" ,it will find the first occurrence of 'O' or 'o'.
If you want to indicate whether one string contains another string. The "containsstringexact" function will be a better choice.
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi , @Anonymous
The "search "function is case insensitive. If you don’t require case sensitivity, you can try this function . When searching for "O" ,it will find the first occurrence of 'O' or 'o'.
If you want to indicate whether one string contains another string. The "containsstringexact" function will be a better choice.
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
SEARCH("O", 'ClaimData'[ICD10 Mapping] ,,0) = 0
will exclude all values that contains "O"
Try
Left ( 'ClaimData'[ICD10 Mapping], 1 ) <> "O"
Proud to be a Super User!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.