Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
mohanrajsubrama
Contributor II
Contributor II

urgent

Hi Guys,

              I have a table like this and i dont want Customet No which starts from CU.How can i acheive this .i need help to get this solve .

Customer:

LOAD

     No_ as  [Customer No_],

     Name as [Customer Name],

     [Customer Disc_ Group],

     Channel as ChannelGroup,

     [Customer Type],

     [State Code],

     City as  CustomerCity,

  

FROM

(qvd)

where Customer_No!='C*';

thanks,

mohan

1 Solution

Accepted Solutions
Not applicable

Hi,

Try this:

Customer:

LOAD

     No_ as  [Customer No_],

     Name as [Customer Name],

     [Customer Disc_ Group],

     Channel as ChannelGroup,

     [Customer Type],

     [State Code],

     City as  CustomerCity,

  

FROM

(qvd)

where left(No_,2)<>'CU';

View solution in original post

5 Replies
Sokkorn
Master
Master

Hi Mohan,

Try this:

where Not WildMatch(Customer_No,'C*');

Regards,

Sokkorn

er_mohit
Master II
Master II

try like

where Customer_No<>'C*';

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Try

Customer:

LOAD

     No_ as  [Customer No_],

     Name as [Customer Name],

     [Customer Disc_ Group],

     Channel as ChannelGroup,

     [Customer Type],

     [State Code],

     City as  CustomerCity,

  

FROM

(qvd)

     Where not(wildmatch(Customer_No,'CU*'));

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Not applicable

Hi,

Try this:

Customer:

LOAD

     No_ as  [Customer No_],

     Name as [Customer Name],

     [Customer Disc_ Group],

     Channel as ChannelGroup,

     [Customer Type],

     [State Code],

     City as  CustomerCity,

  

FROM

(qvd)

where left(No_,2)<>'CU';

mohanrajsubrama
Contributor II
Contributor II
Author

Thanks for quick response Borja.

Regards,

Mohan.