Excel 2003
SQL Server 2005
If there would be a better forum to discuss/ask this, let me know.
What I would like to do is, in VBA if possible, query data from a SQL Server database view according to data in certain cells within the Worksheet.
For instance, I might have this data:
I want to return the FieldName from the SQL Server Table which contained the "Search Criteria" as I'll list examples, below for each row, IF there is a match. Also, if there is a match, I want to return the AccountID.
If there is no match, I want to return something like "NULL" or "NoFind"
Here is an exmaple of the SearchFormat that will be listed, currently in column "H":
PHONE
SSN
NAME
ADDRESS
And here are some made-up data that would match the search formats:
Search Criteria SearchFormat
111-11-1111 SSN
111111111 SSN
222-222-2222 PHONE
2222222222 PHONE
2222222 PHONE
Smith, John NAME
Homer Simpson NAME
123 Main St City, ST ADDRESS
So, I'd want to return the field where it was located. So, if telephone number, I'd want to know if it's phone1, phone2, or phone 3. If address, add1 or add2, and so on.
I want to be able to say, if SearchFormat is SSN, then compare against any SSN fields in the SQL Server database table, whereas if it is PHONE, then look in the various phone fields, and so on.
I hope this is making some sense.
Can this be done with MS Query? If so, how complex would it be to setup, and is it possible it would cause more lag on the SQL server than say a query run in Query Analyzer, or the new MS SQL Server Management Studio?
The reason I am asking is that the view which I would query against has over 30 million records, and I'd hate to cause any serious lag, and get a phone call from the head dba for that server.![[smile] [smile] [smile]](/data/assets/smilies/smile.gif)
--
"If to err is human, then I must be some kind of human!" -Me
SQL Server 2005
If there would be a better forum to discuss/ask this, let me know.
What I would like to do is, in VBA if possible, query data from a SQL Server database view according to data in certain cells within the Worksheet.
For instance, I might have this data:
I want to return the FieldName from the SQL Server Table which contained the "Search Criteria" as I'll list examples, below for each row, IF there is a match. Also, if there is a match, I want to return the AccountID.
If there is no match, I want to return something like "NULL" or "NoFind"
Here is an exmaple of the SearchFormat that will be listed, currently in column "H":
PHONE
SSN
NAME
ADDRESS
And here are some made-up data that would match the search formats:
Search Criteria SearchFormat
111-11-1111 SSN
111111111 SSN
222-222-2222 PHONE
2222222222 PHONE
2222222 PHONE
Smith, John NAME
Homer Simpson NAME
123 Main St City, ST ADDRESS
So, I'd want to return the field where it was located. So, if telephone number, I'd want to know if it's phone1, phone2, or phone 3. If address, add1 or add2, and so on.
I want to be able to say, if SearchFormat is SSN, then compare against any SSN fields in the SQL Server database table, whereas if it is PHONE, then look in the various phone fields, and so on.
I hope this is making some sense.
Can this be done with MS Query? If so, how complex would it be to setup, and is it possible it would cause more lag on the SQL server than say a query run in Query Analyzer, or the new MS SQL Server Management Studio?
The reason I am asking is that the view which I would query against has over 30 million records, and I'd hate to cause any serious lag, and get a phone call from the head dba for that server.
![[smile] [smile] [smile]](/data/assets/smilies/smile.gif)
--
"If to err is human, then I must be some kind of human!" -Me