franciscocorrea
New Member
- Joined
- Oct 31, 2012
- Messages
- 11
Hello everyone!
I have the following problem: I want to find the parent value for each account, as you may see on the following example:
Account Parent Column C
1
11
11111
121
1211
12111111
I want the VBA to find the parent value of each Account and type it on Parent column. To do so VBA should remove one digit from each Account entry and then make a vlookup to see if that resulting number exists on column Account. When vlookup finds the number it is the parent. In case vlookup doesn't find the number it should keep on removing digits until it finds.
So the expected result is:
Account Parent
1
11 1
11111 11
121 1
1211 121
12111111 1211
I hope I made my self understood...
Many thanks!!
Best
I have the following problem: I want to find the parent value for each account, as you may see on the following example:
Account Parent Column C
1
11
11111
121
1211
12111111
I want the VBA to find the parent value of each Account and type it on Parent column. To do so VBA should remove one digit from each Account entry and then make a vlookup to see if that resulting number exists on column Account. When vlookup finds the number it is the parent. In case vlookup doesn't find the number it should keep on removing digits until it finds.
So the expected result is:
Account Parent
1
11 1
11111 11
121 1
1211 121
12111111 1211
I hope I made my self understood...
Many thanks!!
Best