If possible I'd like to compare only the first character of each of the
customer name fields.
Sometimes the customers go by acrynoms and sometimes the name is fully
spelled out. So
to avoid a false negative it is more safe to search/filter by the first
character of the beginning of the
word/name only. Does excel macro allow substring functionality? If I am
to comparing the first char of the name
field of each sheet how to I access this, what is the syntax for
accessing amp; comparing substring characters??
This shouldn't be too difficult (to use a marco to compare two fields
at a time for matching) but I don't know
how to write the code.
I have two sheets 1 amp; 2. I’m to match customers from sheet 2 to 1.
I want to match by zip code and by name. If zip AND name of row(x) in
sheet 2
Matches with zip AND name of ANY of the 5000 row(s) in sheet 1 then
highlight row(x) in sheet2. (to indicate a match)
If no match are found, then do nothing, and move on to next row of
sheet2 until all rows of sheet2 are finished comparing to the sheet1.
Basically I need to compare TWO fields simultaneiously, (double match)
per row to the respective TWO fields with the second sheet I am
comparing too. If both criteria are meet then it is a match. Otherwise
it is left alone/ignored. I want to do this for all 35000 rows in my
sheet2 which will take a long time without the help of a macro. Both
the sheet to be worked on (sheet 2) and the sheet that exists only for
comparison (sheet1) are huge and have many entries.
What I need to do now is the second step: How do I compare AT THE SAME
TIME both the ZIP CODE (numeric) AND the CUSTOMER NAME
(string/character/word) of sheet2 to the Zip and Name of sheet1.??
Do I need a nested FOR LOOP or a seperate for Loop after the first
one??
How shall I go about coding this? I've tried a lot of things but it
never works..--
bxc2739
------------------------------------------------------------------------
bxc2739's Profile: www.excelforum.com/member.php...oamp;userid=32538
View this thread: www.excelforum.com/showthread...hreadid=535928If you don't mind adding a few columns, you should be able to do this without
macros.
Add 2 columns to the big (35,000) row sheet. Let's say columns A and B.
- in the first, put quot;=left(C1,1) amp; D1quot; where C1 refers to the name column
(the 1 in the left function refers to the number of characters from the name
that will be used) in this same row and D1 refers to the zip code
- in the second put in consecutive number (1, 2, 3, ... so that each row is
identified by a number). This will let you tell what row matched up.
Add one column to the other sheet and put in a vlookup function to find the
match. It should look something like:
quot;=vlookup(left(J1,1) amp; K1,Sheet2!$A$1:$B$35000,2,0)quot; where columns J and K
have the name and the zip code on this sheet
The result will be either a number corresponding to the row that matches or
else quot;#N/Aquot; to indicate not found.
Will
quot;bxc2739quot; wrote:
gt;
gt; If possible I'd like to compare only the first character of each of the
gt; customer name fields.
gt; Sometimes the customers go by acrynoms and sometimes the name is fully
gt; spelled out. So
gt; to avoid a false negative it is more safe to search/filter by the first
gt; character of the beginning of the
gt; word/name only. Does excel macro allow substring functionality? If I am
gt; to comparing the first char of the name
gt; field of each sheet how to I access this, what is the syntax for
gt; accessing amp; comparing substring characters??
gt;
gt; This shouldn't be too difficult (to use a marco to compare two fields
gt; at a time for matching) but I don't know
gt; how to write the code.
gt;
gt; I have two sheets 1 amp; 2. I’m to match customers from sheet 2 to 1.
gt;
gt; I want to match by zip code and by name. If zip AND name of row(x) in
gt; sheet 2
gt; Matches with zip AND name of ANY of the 5000 row(s) in sheet 1 then
gt; highlight row(x) in sheet2. (to indicate a match)
gt; If no match are found, then do nothing, and move on to next row of
gt; sheet2 until all rows of sheet2 are finished comparing to the sheet1.
gt;
gt; Basically I need to compare TWO fields simultaneiously, (double match)
gt; per row to the respective TWO fields with the second sheet I am
gt; comparing too. If both criteria are meet then it is a match. Otherwise
gt; it is left alone/ignored. I want to do this for all 35000 rows in my
gt; sheet2 which will take a long time without the help of a macro. Both
gt; the sheet to be worked on (sheet 2) and the sheet that exists only for
gt; comparison (sheet1) are huge and have many entries.
gt;
gt; What I need to do now is the second step: How do I compare AT THE SAME
gt; TIME both the ZIP CODE (numeric) AND the CUSTOMER NAME
gt; (string/character/word) of sheet2 to the Zip and Name of sheet1.??
gt;
gt; Do I need a nested FOR LOOP or a seperate for Loop after the first
gt; one??
gt; How shall I go about coding this? I've tried a lot of things but it
gt; never works..
gt;
gt;
gt; --
gt; bxc2739
gt; ------------------------------------------------------------------------
gt; bxc2739's Profile: www.excelforum.com/member.php...oamp;userid=32538
gt; View this thread: www.excelforum.com/showthread...hreadid=535928
gt;
gt;
- Dec 25 Tue 2007 20:41
Can excel macro access SUBstring individual 'char' level? If so how?
close
全站熱搜
留言列表
發表留言