thesisproject
New Member
- Joined
- Dec 19, 2013
- Messages
- 12
I would like to match each company in list A to a singular company from list B. List A has about 354 companies and list B has 2,988 companies. Each company has an industry code (a.k.a. SIC) and a size amount. I would like to match each company in list A to the company in list B with the closest industry code and size amount. I would like to first match the company by industry code and then match the company to the closest size amount from that list of a particular industry code. If the size amount is not available (N/A) the companies would only need to be matched by industry code. The end result would be one company from list B matched to each company from list A.
Thank you so much.
Here is an example with a header (the letters in the second row indicate column). Sorry, this format may be a little confusing, please let me know if it needs to be altered to complete the matching task.
Example:
<tbody>
</tbody>
Thank you so much.
Here is an example with a header (the letters in the second row indicate column). Sorry, this format may be a little confusing, please let me know if it needs to be altered to complete the matching task.
Example:
LIST B | LIST B | LIST B | Matched Company | LIST A | LIST A | LIST A |
A | C | F | G | H | L | M |
SIC (Industry code) | Name | Size | Matched Company | Name | SIC (Industry code) | Size |
4656 | AA | 123.4 | X | Q | 3434 | 1235.564 |
3434 | Y | 95.13 | AA | R | 4656 | N/A |
3434 | Z | 892.134 | Continued... | Cont. | Cont. | |
3434 | X | 1240.23 | ||||
1234 | BB | 67.3 | ||||
4657 | CC | 12.9 | ||||
Cont. | Cont. | Cont. |
<tbody>
</tbody>