VBA Goal Seek
Last Updated :
12 Sep, 2019
Blog Author :
Edited by :
Reviewed by :
Table Of Contents
Goal Seek in Excel VBA
Goal Seek is the tool available in Excel VBA, which helps us to find the required number to be achieved to get to the set target.
For example, you are a student and have targeted an average score of 90% from six available subjects. As of now, you have completed 5 exams. You left with only one subject. Your anticipated scores from five completed subjects are 89, 88, 91, 87, 89, and 90. Now you want to know how much you need to score in the final examination to achieve the overall average percentage target of 90%.
One can do this by using GOAL SEEK in excel worksheet and VBA coding. But, first, let us see how it works with VBA.
VBA Goal Seek Syntax
In VBA Goal Seek, we need to specify the value we are changing and arrive at the final targeted result, so supply the cell reference using the VBA RANGE object. Later, we can access the GOAL SEEK option.
Below is the syntax of Goal Seek in VBA.
- Range(): In this, we need to supply the cell reference where we need to achieve the targeted value.
- Goal: In this argument, we need to enter what is the goal we are trying to achieve.
- Changing Cell: In this argument, we need to supply by changing which cell value we need to achieve the goal.
Besides this feature, if you wish to learn more about how VBA can be used in an advanced way, you can check out this Excel Events Automation Using Advanced VBA Functions Course.
Examples of Excel VBA Goal Seek
VBA Goal Seek - Example #1
Let’s take the example of an average examination score only. Below is the anticipated score for 5 subjects from the completed exam.
First, we must determine the average score from the completed 5 subjects. Then, Apply the AVERAGE function in the B8 cell.
In this example, our Goal is 90, and Changing Cell will be B7. So Goal Seek will help us to find the targeted score from the final subject to achieve the overall average of 90.
Start the Sub procedure in the VBA class module.
Code:
Sub Goal_Seek_Example1() End Sub
We need the result in the B8 cell, so supply this range reference using the RANGE object.
Code:
Sub Goal_Seek_Example1() Range ("B8") End Sub
Now, put a dot and enter the “Goal Seek” option.
The first argument is the “Goal” for this. Next, we must enter our end goal to arrive in RANGE B8. In this example, we are trying to achieve the target of 90.
Code:
Sub Goal_Seek_Example1() Range("B8").GoalSeek Goal:=90 End Sub
The next argument is “Changing Cell” for this, we need to supply the new value in which cell we need to achieve the Goal.
Code:
Sub Goal_Seek_Example1() Range("B8").GoalSeek Goal:=90, ChangingCell:=Range("B7") End Sub
In this example, our changing cell is Sub 6 cell, i.e., the B7 cell.
Let us run the code to see what needs to be done in the final subject to achieve the overall average percentage of 90.
So, 95 has to be scored in the final subject to get the overall average of 90.
VBA Goal Seek - Example #2
We have learned how to apply GOAL SEEK to find the number required to achieve the goal. Now we will see some advanced examples of finding the final examination score for more than one student.
Below are the anticipated scores for 5 subjects after the exam.
Since we are finding the goal for more than one student, we need to use loops. Below is the code for you.
Code:
Sub Goal_Seek_Example2() Dim k As Long Dim ResultCell As Range Dim ChangingCell As Range Dim TargetScore As Integer TargetScore = 90 For k = 2 To 5 Set ResultCell = Cells(8, k) Set ChangingCell = Cells(7, k) ResultCell.GoalSeek TargetScore, ChangingCell Next k End Sub
This code will loop through all the students’ scores and arrive at the final examination score required to achieve the overall average of 90.
So, we got the result now as,
Student A needs to score just 83 to secure the overall 90 percentage, and Student D needs to score 93.
But look at Students B and C. They need to score 104 each in the final examination, which is impossible.
Using GOAL SEEK analysis, we can find the required number to achieve the targeted number mid-through the project or process.
Things to Remember
- Goal Seek is available with both worksheet tools and the VBA tool.
- The resulting cell should always contain a formula.
- We need to enter the goal value and change the cell reference to the Goal Seek tool.