christhedonstar
Programmer
Here is an example:
Say you have a config worksheet and you have loads of data in this table related to people. I now want to add the cars people own and then later extract the cars they own without using vba.
The two ideas I have is taking (note | is next cell):
Name | Car 1 | Car 2 |
Chris | Peugout 205 | Audi A3 |
John | Audi A3 | Golf | Mini
I can just do a vlookup and match on Car 1, Car 2 etc.
Here I can do a vlookup and then match on Car 1, Car etc.
OR
Chris | Peugout 205, Audi A3
John | Audi A3, Golf, Mini
Here I can do a vlookup and then string functions to get the cars using the comma as a delimiter
I'm interested in speed and maintenance. Obviously we don't know how many cars people have but lets say 6 is likely over the top but possible. I'm currently leaning towards doing the comma seperated as you don't need to add an extra column to expand the amount of cars someone can have.
Thoughts?
Thanks,
Chris
Say you have a config worksheet and you have loads of data in this table related to people. I now want to add the cars people own and then later extract the cars they own without using vba.
The two ideas I have is taking (note | is next cell):
Name | Car 1 | Car 2 |
Chris | Peugout 205 | Audi A3 |
John | Audi A3 | Golf | Mini
I can just do a vlookup and match on Car 1, Car 2 etc.
Here I can do a vlookup and then match on Car 1, Car etc.
OR
Chris | Peugout 205, Audi A3
John | Audi A3, Golf, Mini
Here I can do a vlookup and then string functions to get the cars using the comma as a delimiter
I'm interested in speed and maintenance. Obviously we don't know how many cars people have but lets say 6 is likely over the top but possible. I'm currently leaning towards doing the comma seperated as you don't need to add an extra column to expand the amount of cars someone can have.
Thoughts?
Thanks,
Chris