query trouble

cahickm2

Board Regular
Joined
May 14, 2007
Messages
101
SELECT *
FROM [Lucent TTI Trunk]
WHERE [Tkg Short Name] Not Like '%C';

I would like this query to return data where the Tkg Short Name does NOT end with "C". I know the code above isn't right. I am confused.
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Ok, That worked for removing data that ended with "C" but Now I want to remove "P" as well.....
 
Upvote 0
SELECT *
FROM [Lucent TTI Trunk]
WHERE (((Right([Tkg Short Name],1))<>'C' And (Right([Tkg Short Name],1))<>'P'));


Is that correct?
 
Upvote 0
Ok, I can get is to work only when I run as separate queries.

SELECT *
FROM [Lucent TTI Trunk]
WHERE [Avail Circuits]<>0;

UNION

SELECT *
FROM [Lucent TTI Trunk]
WHERE (((Right([Tkg Short Name],1))<>'C' And (Right([Tkg Short Name],1))<>'P'));


That is the query i am attempting to run. The first part removes all data where "Avail Circuits" does not = 0. the second part removes data where the "Tkg Short Name" ends with "C" and "P". However, I can not get the query to run properly.
 
Upvote 0
Ok, I can get is to work only when I run as separate queries.

SELECT *
FROM [Lucent TTI Trunk]
WHERE [Avail Circuits]<>0;

UNION

SELECT *
FROM [Lucent TTI Trunk]
WHERE (((Right([Tkg Short Name],1))<>'C' And (Right([Tkg Short Name],1))<>'P'));


That is the query i am attempting to run. The first part removes all data where "Avail Circuits" does not = 0. the second part removes data where the "Tkg Short Name" ends with "C" and "P". However, I can not get the query to run properly.
 
Upvote 0
What about:

Code:
SELECT * 
FROM [Lucent TTI Trunk] 
WHERE [Avail Circuits]<>0
AND Right([Tkg Short Name],1) NOT IN ('C','P')

CT
 
Upvote 0

Forum statistics

Threads
1,213,484
Messages
6,113,920
Members
448,533
Latest member
thietbibeboiwasaco

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top