+ Reply to Thread
Results 1 to 3 of 3

Goal Seek in a loop

  1. #1
    Brother
    Guest

    Goal Seek in a loop


    I have used the following to run a simple goalseek on one line.

    Range("AE3").Select
    Range("AE3").GoalSeek Goal:=0, ChangingCell:=Range("AA3")

    Is it possible to get this doen in a loop acting on every entry in column AE?

  2. #2
    Bill Martin -- (Remove NOSPAM from address)
    Guest

    Re: Goal Seek in a loop

    Brother wrote:
    > I have used the following to run a simple goalseek on one line.
    >
    > Range("AE3").Select
    > Range("AE3").GoalSeek Goal:=0, ChangingCell:=Range("AA3")
    >
    > Is it possible to get this doen in a loop acting on every entry in column AE?



    How about something of the form:

    x=3
    y$ = "AE" + FORMAT(x,"#")
    while range(y$) > 0
    Do your stuff here
    x = x+1
    wend

    Bill

  3. #3
    Bill Martin -- (Remove NOSPAM from address)
    Guest

    Re: Goal Seek in a loop

    Brother wrote:
    > I have used the following to run a simple goalseek on one line.
    >
    > Range("AE3").Select
    > Range("AE3").GoalSeek Goal:=0, ChangingCell:=Range("AA3")
    >
    > Is it possible to get this doen in a loop acting on every entry in column AE?



    How about something of the form:

    x=3
    y$ = "AE" + FORMAT(x,"#")
    while range(y$) > 0
    Do your stuff here
    x = x+1
    y$ = "AE" + FORMAT(x,"#")
    wend

    Bill

+ 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