Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Is there a way to perform the same function as Goal Seek, but base the inputs
off of cells in a worksheet rather than actually having to click through the menu and enter link to the cells each time? Also, is there a way to have Goal Seek output the required figure to meet your objective output without actually changing the input cell? |
#2
![]() |
|||
|
|||
![]() Don't know if this is what you're looking for. Basically, it performs goal seek everytime the worksheet calculates. You can choose to invoke goal seek with macro or click of a button. There are plenty of ways to perform goal seek. Private Sub worksheet_calculate() _On_Error_GoTo_TheEnd Application.EnableEvents_=_False_ Range("A1").GoalSeek Goal:=Range("A2"), ChangingCell:=Range("A3") _TheEnd: Application.EnableEvents_=_True_ End Sub Make sure you have those underlines, or excel might loops forever. If you don't understand. Please ask again. Good Luck. -- csw78 ------------------------------------------------------------------------ csw78's Profile: http://www.excelforum.com/member.php...o&userid=23008 View this thread: http://www.excelforum.com/showthread...hreadid=372087 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
goal seek wont calculate an accurate value past 3 decimal places | Excel Discussion (Misc queries) | |||
Goal Seek option | Excel Discussion (Misc queries) | |||
goal seek vs solver | 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 |