Results 1 to 2 of 2

Thread: Excel Loop Question

  1. #1

    Thread Starter
    New Member
    Join Date
    Jun 2005
    Posts
    14

    Excel Loop Question

    All I want to do is a do until loop that keeps going until the activeCell is equal to B4.

    I currently have this:

    Do Until activeCell = B4

    But it does not work. I'm assuming its just some simple syntax thing on the B4 or something that I'm not including.

  2. #2
    Fanatic Member VBAhack's Avatar
    Join Date
    Dec 2004
    Location
    Sector 000
    Posts
    617

    Re: Excel Loop Question

    Try this:

    VB Code:
    1. Do Until ActiveCell.Address = "$B$4"

    VBAhack

Posting Permissions

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



Click Here to Expand Forum to Full Width