Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Excel. How do I remove 1,000 mailed addresses from list of 2,265?

I have a mailing list of 2,265 names. Someone has randomly seleceted 1,000
names from the list and mailed them. I need to mail the other 1,265.

I have two Excel workbooks with 2,265 names in one and 1,000 in the other.

I need to be able to subtract the data in the smaller workbook from the
larger one.

Any ideas please??
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Excel. How do I remove 1,000 mailed addresses from list of 2,265?

With data in Sheet1 (2265) and Sheet2 (1000) ; apply the below formula in
Sheet1 cell B1 and copy down to row 2265.....

=IF(COUNTIF(Sheet2!A:A,A1),"","Mail to be sent")

--
Jacob (MVP - Excel)


"Phil C." wrote:

I have a mailing list of 2,265 names. Someone has randomly seleceted 1,000
names from the list and mailed them. I need to mail the other 1,265.

I have two Excel workbooks with 2,265 names in one and 1,000 in the other.

I need to be able to subtract the data in the smaller workbook from the
larger one.

Any ideas please??

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Excel. How do I remove 1,000 mailed addresses from list of 2,2

Hi Jacob

Thanks for this idea. Can I change this formula so that it removes the 1000
names and just leaves me with a datasheet with 1,265 names?

Thanks

Phil



"Jacob Skaria" wrote:

With data in Sheet1 (2265) and Sheet2 (1000) ; apply the below formula in
Sheet1 cell B1 and copy down to row 2265.....

=IF(COUNTIF(Sheet2!A:A,A1),"","Mail to be sent")

--
Jacob (MVP - Excel)


"Phil C." wrote:

I have a mailing list of 2,265 names. Someone has randomly seleceted 1,000
names from the list and mailed them. I need to mail the other 1,265.

I have two Excel workbooks with 2,265 names in one and 1,000 in the other.

I need to be able to subtract the data in the smaller workbook from the
larger one.

Any ideas please??

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Excel. How do I remove 1,000 mailed addresses from list of 2,2

In a different sheet; say sheet3 cell A1 enter the formula and copy
down...which will retrive all the ones which are not present in Sheet2 (1000)
with blank cells..inbetween.
=IF(ISNA(MATCH(Sheet1!A1,Sheet2!A:A,0)),Sheet1!A1, "")

OR try this array formula in Sheet3 cell A1 and copy down as required . This
will list out all missing ones in Sheet2 in sequence (without blank cells).
Please note that this is an array formula. You create array formulas in the
same way that you create other formulas, except you press CTRL+SHIFT+ENTER to
enter the formula. If successful in 'Formula Bar' you can notice the curly
braces at both ends like "{=<formula}"

=INDEX(Sheet1!$A$1:$A$2265,SMALL(IF(ISNA(MATCH(
Sheet1!$A$1:$A$2265,Sheet2!$A$1:$A$1000,0)),
ROW(Sheet1!$A$1:$A$2265)),ROW(A1)))

--
Jacob (MVP - Excel)


"Phil C." wrote:

Hi Jacob

Thanks for this idea. Can I change this formula so that it removes the 1000
names and just leaves me with a datasheet with 1,265 names?

Thanks

Phil



"Jacob Skaria" wrote:

With data in Sheet1 (2265) and Sheet2 (1000) ; apply the below formula in
Sheet1 cell B1 and copy down to row 2265.....

=IF(COUNTIF(Sheet2!A:A,A1),"","Mail to be sent")

--
Jacob (MVP - Excel)


"Phil C." wrote:

I have a mailing list of 2,265 names. Someone has randomly seleceted 1,000
names from the list and mailed them. I need to mail the other 1,265.

I have two Excel workbooks with 2,265 names in one and 1,000 in the other.

I need to be able to subtract the data in the smaller workbook from the
larger one.

Any ideas please??

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Excel. How do I remove 1,000 mailed addresses from list of 2,2

Thanks Jacob.

That is seriously clever!

Cheers. Phil

"Jacob Skaria" wrote:

In a different sheet; say sheet3 cell A1 enter the formula and copy
down...which will retrive all the ones which are not present in Sheet2 (1000)
with blank cells..inbetween.
=IF(ISNA(MATCH(Sheet1!A1,Sheet2!A:A,0)),Sheet1!A1, "")

OR try this array formula in Sheet3 cell A1 and copy down as required . This
will list out all missing ones in Sheet2 in sequence (without blank cells).
Please note that this is an array formula. You create array formulas in the
same way that you create other formulas, except you press CTRL+SHIFT+ENTER to
enter the formula. If successful in 'Formula Bar' you can notice the curly
braces at both ends like "{=<formula}"

=INDEX(Sheet1!$A$1:$A$2265,SMALL(IF(ISNA(MATCH(
Sheet1!$A$1:$A$2265,Sheet2!$A$1:$A$1000,0)),
ROW(Sheet1!$A$1:$A$2265)),ROW(A1)))

--
Jacob (MVP - Excel)


"Phil C." wrote:

Hi Jacob

Thanks for this idea. Can I change this formula so that it removes the 1000
names and just leaves me with a datasheet with 1,265 names?

Thanks

Phil



"Jacob Skaria" wrote:

With data in Sheet1 (2265) and Sheet2 (1000) ; apply the below formula in
Sheet1 cell B1 and copy down to row 2265.....

=IF(COUNTIF(Sheet2!A:A,A1),"","Mail to be sent")

--
Jacob (MVP - Excel)


"Phil C." wrote:

I have a mailing list of 2,265 names. Someone has randomly seleceted 1,000
names from the list and mailed them. I need to mail the other 1,265.

I have two Excel workbooks with 2,265 names in one and 1,000 in the other.

I need to be able to subtract the data in the smaller workbook from the
larger one.

Any ideas please??



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Excel. How do I remove 1,000 mailed addresses from list of 2,265?

Jacob

A little late but congratulations on MVP status.


Gord

On Wed, 14 Apr 2010 03:56:01 -0700, Jacob Skaria
wrote:

With data in Sheet1 (2265) and Sheet2 (1000) ; apply the below formula in
Sheet1 cell B1 and copy down to row 2265.....

=IF(COUNTIF(Sheet2!A:A,A1),"","Mail to be sent")


  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Excel. How do I remove 1,000 mailed addresses from list of 2,2

Thanks Gord.


"Gord Dibben" wrote:

Jacob

A little late but congratulations on MVP status.


Gord

On Wed, 14 Apr 2010 03:56:01 -0700, Jacob Skaria
wrote:

With data in Sheet1 (2265) and Sheet2 (1000) ; apply the below formula in
Sheet1 cell B1 and copy down to row 2265.....

=IF(COUNTIF(Sheet2!A:A,A1),"","Mail to be sent")


.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to take a list of names & addresses from web site into Excel vtrud Excel Discussion (Misc queries) 4 November 3rd 08 09:03 PM
excel list of names, addresses and email to address book/contact list??? anna Excel Discussion (Misc queries) 0 October 24th 08 05:49 PM
Remove bad addresses bejewell Excel Discussion (Misc queries) 2 August 26th 08 09:48 PM
How to download my list of e-mail addresses to excel Fanny Excel Discussion (Misc queries) 1 July 16th 07 10:41 PM
How do I put a list of names and e-mail addresses in excel so tha. trav Excel Discussion (Misc queries) 4 December 2nd 04 02:56 AM


All times are GMT +1. The time now is 03:35 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"