I've got a PDL that has 2000 names on it and I need to update it. I have a
list of names in excel which is the latest informaion that I need to compare
with the names on the PDL. I know I can use a vlookup to do the comparison
but when I try and bring in the PDL as a text file I lose all most of the
info as I have more names than columns in excel.
Any ideas greatly appreciated as I don't want to have to manually work out
the new names.
Thanks
Bec
If you still have more columns then the data can be put onto multiple
worksheets or if you are using Excel 2007 the limit of 256 columns has
been eliminated.
--
joel
------------------------------------------------------------------------
joel's Profile: http://www.thecodecage.com/forumz/member.php?userid=229
View this thread: http://www.thecodecage.com/forumz/showthread.php?t=153349
[url="http://www.thecodecage.com"]Microsoft Office Help[/url]
Need to know things like the "field separator" when it's read as a text file
and whether each row of the PDL is a field related to the content of the 1st
row:
Like if your PDL file is something like:
Ralph, Phyllis, Mark
101, 832, 121
A44,B19,C304
where you would want it to end up as
Ralph 101 A44
Phyllis 832 B19
Mark 121 C304
we could work up a file read and import routine pretty easily.