HELP! VBA Macro Deleting Formula From Cells

rwilliams09

New Member
Joined
Jun 18, 2017
Messages
48
I am trying to run a breakeven analysis using a Goal Seek. The Goal Seek looks at the NPV, and should put in a new price to change the NPV to 0. However, I would like for the NPV cell to retain the formula rather than change to the hard-coded number 0 every time I run it.

Is there something that can fix this? My code is the following:

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

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
I am trying to run a breakeven analysis using a Goal Seek. The Goal Seek looks at the NPV, and should put in a new price to change the NPV to 0. However, I would like for the NPV cell to retain the formula rather than change to the hard-coded number 0 every time I run it.

Is there something that can fix this? My code is the following:

Code:
Private Sub CommandButton2_Click()If Range("Q9").Value = 2 Then
        Application.ScreenUpdating = False
        With Range("Q11")
            .GoalSeek Goal:=0, ChangingCell:=Range("P22")
            [B][COLOR="#FF0000"].Value = Application.Max(0, .Value)[/COLOR][/B]
        End With
        Application.ScreenUpdating = True
    End If
End Sub
[untested] It looks to me like the line of code I highlighted in red is what is removing the formula... you can try deleting that line of code and see whether the code still works correctly for you.
 
Upvote 0
Now, I'm just wondering if there is a way to make the Goal Seek stop its "seek" once it reaches 0 basically to have 0 as a minimum.

I know that I can have a cell with in IF statement that says that when the goalseek answer is <0, just to put 0. However, the run time is still extremely long. Is there a way to make this not happen?
 
Upvote 0
Basically, I want P22 to have a minimum value of 0.
Unfortunately, I have never used GoalSeek before (I was a Civil Engineer/Programmer during my working career and know pretty much nothing about the financial functions you are using), so I cannot help you with your new question. Based on the description for it, it would have seemed to me that setting the goal at 0 would be all that was necessary.
 
Upvote 0

Forum statistics

Threads
1,215,005
Messages
6,122,661
Members
449,091
Latest member
peppernaut

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