Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8211505
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T10:26:55+00:00 2026-06-07T10:26:55+00:00

so here is my function..it works perfect except it filters every cell the contain

  • 0

so here is my function..it works perfect except it filters every cell the contain the number 3 like 300 313 30 43 but i want it to filter only cell values that have only the single digit 3!!

Private Sub LinkLabel4_Click(sender As Object, e As System.EventArgs) Handles LinkLabel4.Click

    Dim search As String
    search = "SELECT * FROM products WHERE rank LIKE '%" & 3 & "%'"

    Dim connectionString As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=E:\db.mdb"
    Dim adapter As New OleDbDataAdapter(search, connectionString)

    Dim dt As New DataTable("products")
    adapter.Fill(dt)
    DataGridView1.DataSource = dt
End Sub

another things is the what would be the select statements for filtering with values between 2 specified numbers, like between 4 and 16
Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T10:26:57+00:00Added an answer on June 7, 2026 at 10:26 am

    If rank is a numeric datatype then your query should be as this

    search = "SELECT * FROM products WHERE rank = 3"
    

    and in the second case

    search = "SELECT * FROM products WHERE rank >=4 AND rank <= 16"
    

    To render your search parametrized you could write a method like this

    Sub RankFilter(ByVal rankLowValue As Integer, Optional ByVal rankHiValue As Integer = -1)
    
        Dim search As String 
        if rankHiValue = -1 then
            search = "SELECT * FROM products WHERE rank = ?" 
        else
            search = "SELECT * FROM products WHERE rank >= ? and rank <= ?" 
    
        Dim connectionString As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=E:\db.mdb" 
    
        Dim adapter As New OleDbDataAdapter(search, connectionString)
        adapters.SelectCommand.Parameters.AddWithValue("@rankLo", rankLowValue)
        if rankHiValue <> -1 then
             adapters.SelectCommand.Parameters.AddWithValue("@rankHi", rankHiValue)
        end if
    
        Dim dt As New DataTable("products") 
        adapter.Fill(dt) 
        DataGridView1.DataSource = dt 
    end sub
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

$('#selector').click(function() { // here I would like to load a javascript file // let's
I have a link here that works perfect for calling the postback close that
The script works perfect both in Firefox and Opera. $(document).ready(function() { $('#mainTable tr').each(function() {
I have a JS+CSS menu that works perfect on mouse hover, but I have
I have a simple Jquery function here: function submit_selection(del,submit) { del='yes'; submit=true; var ITAMZ=new
Here is function , <script type=text/javascript> $(document).ready(function() { getRecordspage(1, 5); $(a.page-numbers).click(function() { alert(1); getRecordspage($(this).text(),
I've got a function here that is meant to look through a list of
simonn helped me to code an ordered integer partition function here. He posted two
I have this simple function: <script type=text/javascript> //<![CDATA[ jQuery(function($){ function here(b){alert(b);} ; here(6); });
I need to pass an url from asp.net load_page to flowplayer javascript function here:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.