LandDestroyer Posted April 26, 2005 Posted April 26, 2005 I want to know about this too. Help! I have a group of zip codes. I want to make a report that lists all the information from the store table for stores that have the zip codes that are checked. When the user checks 71111, 71006, 71497, I want the report to get only those stores/rows from the table and put those in the report. I only know how to make the crystal report wizard display all rows from a table or querie. How can I do this? Thanks, Chris Gregory christopherleegregory@hotmail.com Quote
kcwallace Posted April 29, 2005 Posted April 29, 2005 Create a dataadapter SQL = "SELECT ZIP FROM TABLE WHERE ZIP=" & ZIPofInterest da.SelectCommand = New SqlCommand(SQL, cnn) Dim ds As New DataSet da.Fill(ds, "CrystalRptSourceTable") Quote Go Beavs!!!
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.