Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
krithikarees
Contributor III
Contributor III

Remove rows that contain "C0"?

Hello,

I am trying to figure out how to remove all rows of customer number that starts with "C0". Where customer Number is my Key Joining field with other tables.

I need them gone

1 Solution

Accepted Solutions
qv_testing
Specialist II
Specialist II

Try this,

=IF(wildmatch(CURRENCY,'*CO')<>1, CURRENCY)

View solution in original post

7 Replies
isingh30
Specialist
Specialist

You need solution at script level or UI level?

jwjackso
Specialist III
Specialist III

In the where clause try Mid(Text([Customer Number]),1,1) <> 'C'

Chanty4u
MVP
MVP

try this

Load*

from table where wildmatch(Field,'*c*')<>1

krithikarees
Contributor III
Contributor III
Author

UI level would be great.

Thanks

OmarBenSalem

in your measure:

do as follow:

sum({<CustomerNumber=-{"CO*"}>}YourMeasure)

Chanty4u
MVP
MVP

try this

add in UI:

=count({<CusstNum-={"CO *"}>} Number)

qv_testing
Specialist II
Specialist II

Try this,

=IF(wildmatch(CURRENCY,'*CO')<>1, CURRENCY)