LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,049
Default query criteria based on a changing list of values

something like this to get you started maybe:

function GetSQL() as String
dim text as string
dim cell as range

for each cell in range("????").Cells
text = text & " , " & cell.value
next
text = "SELECT " & MID(text,2) & "FROM WHATTABLE_ETC_ETC"
GetSQL = text
End Function




"bwilk77" wrote in message
...
I am trying to create a query that I can update that will return values
based
on criteria from a list of values. Right now I have a range defined as
=OFFSET(RangeValues!$B$2,0,0,COUNT(RangeValues!$B: $B),1) that holds the
criteria I want to query by. I would like for the query to alter its
selection criteria based on what is keyed into column B of the
€śRangeValues€ť
worksheet. Hopefully the finished product would be for me to
add/delete/update values in column B, then run a macro (or refresh a
query)
that will return data based on what is currently in column B.

I am connecting through an ODBC and can get the results I want if I copy
and
paste the criteria values into the SQL each time they change, but I cant
get
it to work based on a dynamic range of values.

I am open to try solutions in VBA or the Excel Query Builder, I'm
desperate.

Any help would be greatly appreciated.


 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Query criteria based on a changing criteria list bwilk77 Excel Discussion (Misc queries) 2 May 27th 09 04:03 PM
Return Top values with changing criteria [email protected] Excel Worksheet Functions 9 May 21st 09 04:08 AM
Changing values in column 1 and 2 based on values in col 3 & 7 sonali Excel Programming 1 April 29th 08 07:51 AM
Extract list of units based on error criteria to new list Sheila Excel Worksheet Functions 14 August 9th 07 03:57 AM
Extract list of units based on error criteria to new list Sheila Excel Worksheet Functions 0 August 9th 07 01:50 AM


All times are GMT +1. The time now is 09:31 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"