Goal Seek in a loop

G

Guest

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?
 
G

Guest

Brother said:
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
 
G

Guest

Brother said:
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
 
G

Guest

Bill,

How would you change the macro if the data is in rows instead of columns?

Dave
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top