Results 1 to 17 of 17

Find row number from value in combobox by searching sheet

Threaded View

sabrinamay16 Find row number from value in... 12-29-2012, 09:37 AM
Zealotwraith Re: Find row number from... 12-29-2012, 10:00 AM
Palmetto Re: Find row number from... 12-29-2012, 10:06 AM
sabrinamay16 Re: Find row number from... 12-29-2012, 10:30 AM
Palmetto Re: Find row number from... 12-29-2012, 10:40 AM
sabrinamay16 Re: Find row number from... 12-29-2012, 11:09 AM
HSV Re: Find row number from... 12-29-2012, 12:04 PM
Norie Re: Find row number from... 12-29-2012, 12:46 PM
sabrinamay16 Re: Find row number from... 12-29-2012, 03:04 PM
sabrinamay16 Re: Find row number from... 12-29-2012, 02:18 PM
Norie Re: Find row number from... 12-29-2012, 03:09 PM
sabrinamay16 Re: Find row number from... 12-29-2012, 03:27 PM
sabrinamay16 Re: Find row number from... 12-29-2012, 03:25 PM
Norie Re: Find row number from... 12-29-2012, 03:27 PM
sabrinamay16 Re: Find row number from... 12-29-2012, 03:29 PM
sabrinamay16 Re: Find row number from... 12-29-2012, 03:31 PM
Norie Re: Find row number from... 12-29-2012, 03:32 PM
  1. #1
    Registered User
    Join Date
    12-27-2012
    Location
    London
    MS-Off Ver
    Excel 2010
    Posts
    17

    Find row number from value in combobox by searching sheet

    I need to find the row number on a sheet by searching for a value from the combo box. I have created a calender that lists dates that are free in the combo box and then details need to put inputted in the same row. I've written this code and used a messagebox to test that the row is correct, but it just shows 0. This is the code i've written, not sure if im on the right lines..

    Private Sub BookButton_Click()
    Dim i As Integer
    Dim r As Integer
    Dim Datev As String
    Dim w As Worksheet
    
    Set w = Worksheets("Calender")
    
    Datev = ComboBox1.value
    
    For i = 3 To w.Cells(Rows.Count, "B").End(xlUp).Row
       If w.Cells(i, 2) = Datev Then
    End If: Next i
    
    i = r
    MsgBox (r)
    
    End Sub
    Last edited by sabrinamay16; 12-29-2012 at 10:30 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1