pick out Unique Contacts from Multiple Lists

niladri20052006

Board Regular
Joined
Dec 3, 2010
Messages
121
Hi All,

I have a list consisting of 10000+ data where I have Company name,Title,
Email and website. There are multiple contacts for a single company.

I want to get only Network tiles unique contacts that means the list will be consisted of only Network titles for individual company.

What quires I will have to write?


Thanks in advance!
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
In a query, select the fields you want to see in your results. In the properties of the query, find the "Unique Values" property and change it to Yes. Run the query. If you're more comfortable with SQL, just write a "Select Distict" query.

Phil...
 
Upvote 0
try this for Access 2003
click Queries
clikc New
click Design View
al ist of tables come up
ignore tehem and just Click Close
click View
click SQL View
paste this
Code:
select 
 distinct
  [Company name],
  Title, 
  Email,
  website
from
  your_table
where 
  Title like '*network*'
change the name of your table and columns
run query
 
Upvote 0

Forum statistics

Threads
1,224,527
Messages
6,179,348
Members
452,907
Latest member
Roland Deschain

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