Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Junior Member
 
Posts: 3
Default finding 600 emails in a column

Hi! Thank you for taking the time to read this.

I run an internet retail business. We advertise on search engines large and small.

I have to make a decision on whether or not one of our smaller ad sites is paying off. Basically, the ad site supplies us with a list of POTENTIAL CUSTOMER emails. We send out monthly promotional emails to them.

Now i need to track these emails to see if any of them have become ESTABLISHED CUSTOMERS.

So far, I fed information from our main data base of ESTABLISHED CUSTOMERS into EXCELL so all the ESTABLISHED CUSTOMER emails are in one column.

But i don't know what to do next. I have 600 POTENTIAL CUSTOMER emails that i need to check against the established list. The only way i can think of , with my limited Excell knowledge, is searching using the editfind function one by one until i'm done with the list of 600 emails.

I know there's a better way!!!

Can anyone help?

Last edited by farrell : December 27th 05 at 07:01 PM
  #2   Report Post  
Posted to microsoft.public.excel.newusers
Max
 
Posts: n/a
Default finding 600 emails in a column

One try ..

Assuming the data for both POTENTIAL CUSTOMER and ESTABLISHED CUSTOMERS are
listed in col A, in A1 down in sheets named as:
Potenial, Established

In sheet: Potenial

Put in B1:
=IF(ISNUMBER(MATCH(A1,Established!A:A,0)),"Yes","N o")
Copy down as far as required (to B600?)

Col B will return a "Yes" next to any cust which is found
in the sheet: Established, "No" otherwise.
--
Rgds
Max
xl 97
---
Singapore, GMT+8
xdemechanik
http://savefile.com/projects/236895
--
"farrell" wrote in message
...

Hi! Thank you for taking the time to read this.

I run an internet retail business. We advertise on search engines
large and small.

I have to make a decision on whether or not one of our smaller ad sites
is paying off. Basically, the ad site supplies us with a list of
POTENTIAL CUSTOMER emails. We send out monthly promotional emails to
them.

Now i need to track these emails to see if any of them have become
ESTABLISHED CUSTOMERS.

So far, I fed information from our main data base of ESTABLISHED
CUSTOMERS into EXCELL so all the ESTABLISHED CUSTOMER emails are in one
column.

But i don't know what to do next. I have 600 POTENTIAL CUSTOMER emails
that i need to check against the established list. The only way i can
think of , with my limited Excell knowledge, is searching using the
editfind function one by one until i'm done with the list of 600
emails.

I know there's a better way!!!

Can anyone help?


--
farrell



  #3   Report Post  
Posted to microsoft.public.excel.newusers
Max
 
Posts: n/a
Default finding 600 emails in a column

If for some reason, this didn't work ..

Put in B1:
=IF(ISNUMBER(MATCH(A1,Established!A:A,0)),"Yes","N o")
Copy down as far as required (to B600?)


try this "heavier-duty" alternative instead:

Put in B1:
=IF(SUMPRODUCT(--ISNUMBER(SEARCH(Established!$A$1:$A$100,A1))*(Esta blished!$
A$1:$A$100<""))0,"Yes","No")
Copy down as far as required

Adapt the range: Established!$A$1:$A$100 to suit. Use the smallest range
sufficient to cover the list in "Established", but note that we can't use
entire col references, eg: Established!A:A, in SUMPRODUCT.
--
Rgds
Max
xl 97
---
Singapore, GMT+8
xdemechanik
http://savefile.com/projects/236895
--


  #4   Report Post  
Posted to microsoft.public.excel.newusers
Max
 
Posts: n/a
Default finding 600 emails in a column

Potenial, Established

In sheet: Potenial


Oops, "Potenial" should read as: Potential in the above lines
(Guess my "T" key wasn't working too well <g)
--
Rgds
Max
xl 97
---
Singapore, GMT+8
xdemechanik
http://savefile.com/projects/236895
--


  #5   Report Post  
Posted to microsoft.public.excel.newusers
Max
 
Posts: n/a
Default finding 600 emails in a column

From where you're posting/reading this, Excelbanter??,
one observation is that Excelbanter seems to remove some operator symbols,
eg: "greater than", "less than" etc, even those from within posted formulas.
This would cause problems in trying out the formulas posted, eg, when you do
direct copy of formulas from reply posted and paste into cells, as these
symbols, if present in the formulas, would have been quietly removed <g.

Perhaps you might want to read this thread in google instead:
http://tinyurl.com/c7v3e

And for easy reference,
here's a sample implementation of the 2 options:
http://cjoint.com/?mCkTFXh68u
farrel_newusers.xls
--
Rgds
Max
xl 97
---
Singapore, GMT+8
xdemechanik
http://savefile.com/projects/236895
--




  #6   Report Post  
Junior Member
 
Posts: 3
Default

bRILLIANT! I WILL TRY THIS AS SOON AS I GET A CHANCE.

THANK YOU, MAX!


  #7   Report Post  
Junior Member
 
Posts: 3
Default

Oh my, Max. You are genius!!! It worked, it worked! If you care, we've decided to keep this advertiser because a fair percentage of POTENTIAL customers have become ESTABLISHED ones.

(i'm amazed that you even understood my mumbo jumbled question)

:)Farrell



  #8   Report Post  
Posted to microsoft.public.excel.newusers
Max
 
Posts: n/a
Default finding 600 emails in a column

You're welcome !

Pl note comments in my other response on the removal of eg: "greater than",
"less than", "not equal to" operator symbols by Excelbanter. This comment
would apply for the *2nd* "back-up" formula suggested. I've also provided a
google link to this thread and a link to a sample file there.
--
Rgds
Max
xl 97
---
Singapore, GMT+8
xdemechanik
http://savefile.com/projects/236895
--
"farrell" wrote in message
...

bRILLIANT! I WILL TRY THIS AS SOON AS I GET A CHANCE.

THANK YOU, MAX!



  #9   Report Post  
Posted to microsoft.public.excel.newusers
Max
 
Posts: n/a
Default finding 600 emails in a column

Always great to hear that it worked !
Thanks for the feedback ..
--
Rgds
Max
xl 97
---
Singapore, GMT+8
xdemechanik
http://savefile.com/projects/236895
--
"farrell" wrote in message
...

Oh my, Max. You are genius!!! It worked, it worked! If you care,
we've decided to keep this advertiser because a fair percentage of
POTENTIAL customers have become ESTABLISHED ones.

(i'm amazed that you even understood my mumbo jumbled question)

:)Farrell



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
Need to Improve Code Copying/Pasting Between Workbooks David Excel Discussion (Misc queries) 1 January 6th 06 03:56 AM
IF/AND/OR/DATEIF Issue...sorry...long post... EDSTAFF Excel Worksheet Functions 1 November 10th 05 12:28 AM
Finding specific word in column Phil #3 Excel Worksheet Functions 3 March 28th 05 09:00 AM
Finding last entry in column Phil Excel Worksheet Functions 5 January 10th 05 07:21 PM
How can I sort an entire spreadsheet from a list prod sorter Excel Worksheet Functions 4 November 17th 04 03:43 AM


All times are GMT +1. The time now is 10:39 AM.

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

About Us

"It's about Microsoft Excel"