If you have access to 'awk' (pretty much standard on all Unix and Unix-like systems, but there are also Windows ports floating around), you can just have it print the colums you want from the download.? i.e. to print the name of the member (2nd column), and their email address (1sts column), 1st download memberlist.csv, then:? awk -F, '{print $2,$1}' memberlist.csv?