Goalseek VBA

fenerian

New Member
Joined
Mar 13, 2009
Messages
16
The range I want to change using goalseek changes but it is always the max value in range(d77:s77).

So I am trying to choose the one cell range that has the max value in ChangingCell:= part of goalseek.

What I have rigth now:
Range("F78").GoalSeek Goal:=Range("d70"), ChangingCell:=**Range("d77")**

Thanks in advance.
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Hi fenerian
Welcome to the board

Try:

Code:
Dim rMax As Range
 
Set rMax = Range("D77:S77").Find(Application.WorksheetFunction.Max(Range("D77:S77")))
 
Range("F78").GoalSeek Goal:=Range("d70"), ChangingCell:=rMax
 
Upvote 0

Forum statistics

Threads
1,219,161
Messages
6,146,657
Members
450,706
Latest member
LGVBPP

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top