![]() |
#4
|
||||
|
||||
![]()
We are not able to do much to help you as we don't have access to your database, nor to the procedure named "usp_WordMerge_SelAddlinesByFileNumber" which I assume is in the database.
I've used a SQL string to create the filtered recordset and then traversed that subset of data with the processing. This page shows the basic method Using Excel VBA to Query a SQL Server Database | PTR You will need to know the table (or query) name where the CustomerID field exists Dim lngID as Long lngID = 0947000 'assuming it is stored as a number Set rs = conn.Execute("SELECT * FROM TableName WHERE CustomerID = " & lngID) If your recordset is already filtered to a unique CustomerID then there won't be a need to test the values of that field since you already know what it is.
__________________
Andrew Lockton Chrysalis Design, Melbourne Australia |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
stanley | Word | 4 | 12-15-2020 10:59 AM |
![]() |
Erickd90 | Excel | 7 | 07-28-2016 12:20 PM |
![]() |
nfsmith | Excel | 8 | 03-23-2016 11:28 PM |
Excel VBA: Pull data from web | tinfanide | Excel Programming | 0 | 12-09-2011 02:11 AM |
![]() |
psrs0810 | Excel | 2 | 10-25-2010 01:49 PM |