Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]() 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
![]() |
|||
|
|||
![]()
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
![]() |
|||
|
|||
![]()
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 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Bill,
How would you change the macro if the data is in rows instead of columns? Dave "Bill Martin -- (Remove NOSPAM from addre" wrote: 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 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Goal Seek | Excel Discussion (Misc queries) | |||
goal seek wont calculate an accurate value past 3 decimal places | Excel Discussion (Misc queries) | |||
Goal Seek on Multiple Cells | Excel Worksheet Functions | |||
Goal Seek - Why make the PV negative? | Excel Discussion (Misc queries) | |||
Goal Seek - reference a cell for "To value" field? | Excel Worksheet Functions |