i have a list of numbers in a excel sheet . i.e . one collumn about 20 rows of numbers. lets say its called list A then i have some multi row multi collumn excel sheet2 in which collumn C may contain some of the numbers of list A. how can i delete the rows in excel sheet2 which contain list A numbers in collumn C
|
|
|
|
|
|
|
It is not really possible to delete rows from Excel through ADO (http://support.microsoft.com/kb/257819), however, you can create a new sheet that does not include the rows you want to delete. You might find this easier with column headings and named ranges. Here is an example that does not include column headings or ranges, so the SQL refers to the various columns as F*n* (default) and the sheets as [Sheet*n*$]
|
||
|
|
|
|
The non-VBA way to do this is:
All of the list A rows will now be grouped together at the top (or bottom if you sort descending) of your list and you can then delete them |
||
|
|
