+ Reply to Thread
Results 1 to 8 of 8

search for next row

  1. #1
    damorrison
    Guest

    search for next row

    I would like to have a macro that searches the range Say A10:A15 if
    there is a value in A10 then goto B10 do what I have to do in a
    userform then click ok, then it goes to see if there is a value in the
    next row


  2. #2
    Tom Ogilvy
    Guest

    Re: search for next row

    for each cell in range("A10:A15")
    if isempty(cell) then cell.offset(0,1).Select
    userform1.show
    end if
    Next

    --
    Regards,
    Tom Ogilvy

    "damorrison" <davemcochrane@gmail.com> wrote in message
    news:1147019627.915501.319970@i40g2000cwc.googlegroups.com...
    > I would like to have a macro that searches the range Say A10:A15 if
    > there is a value in A10 then goto B10 do what I have to do in a
    > userform then click ok, then it goes to see if there is a value in the
    > next row
    >




  3. #3
    damorrison
    Guest

    Re: search for next row

    Thanks alot, what is the opposite of
    IsEmpty
    right now the macro stops at the first empty row
    I need it to stop at the next row with a value in the A10:A15 range


  4. #4
    JimMay
    Guest

    Re: search for next row

    Not IsEmpty


    "damorrison" <davemcochrane@gmail.com> wrote in message
    news:1147023076.861859.240110@j73g2000cwa.googlegroups.com:

    > Thanks alot, what is the opposite of
    > IsEmpty
    > right now the macro stops at the first empty row
    > I need it to stop at the next row with a value in the A10:A15 range



  5. #5
    damorrison
    Guest

    Re: search for next row

    This what I am trying to do

    For Each cell In Range("A10:A15")
    If Not IsEmpty(cell) Then
    cell.Offset(0, 1).Select
    Application.SendKeys "%{down}"
    End If
    Next

    when a selection is made in colmn B the userform shows


  6. #6
    damorrison
    Guest

    Re: search for next row

    now it stops at the last cell


  7. #7
    paulandrewmorgan@gmail.com
    Guest

    Re: search for next row

    something like this?

    Dim r As Integer
    r = ActiveCell.Row + 1
    Do While (r <= 15)
    If Not IsEmpty(Range("A" & r)) Then
    Range("B" & r).Select
    Application.SendKeys "%{down}"
    Exit Do
    End If
    r = r + 1
    Loop
    The loop stops at row 15


  8. #8
    damorrison
    Guest

    Re: search for next row

    Hi Paul,

    Yes that's it,
    Thanks alot


+ Reply to Thread

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