Help with VBA Goal Seek Minimum or IF Statement

rwilliams09

New Member
Joined
Jun 18, 2017
Messages
48
I have the following code, but I would like to have the Goal Seek stop once P22 reaches a minimum of 0. Is this possible? Basically I have a model with two drivers of revenue. And the Goal Seek (aka breakeven) on one of them is 0.00 if the other revenue driver is sufficient. Thus, I do not need to see that P22 can be -1,000,000,000 or something like that. Not sure if that is possible within VBA...


Code:
Private Sub CommandButton2_Click()If Range("Q9").Value = 2 Then
        Application.ScreenUpdating = False
        With Range("Q11")
            .GoalSeek Goal:=0, ChangingCell:=Range("P22")
        End With
        Application.ScreenUpdating = True
    End If
End Sub
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"

Forum statistics

Threads
1,215,568
Messages
6,125,599
Members
449,238
Latest member
wcbyers

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