freezing formulas after calculation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've tried manually calculating and it won't work because as I move down the rows it will manually calculate all formulas within sheet. I'm adding information to target cells in which the formula cells are pulling from. Then I need to keep changing the target cells without altering the prior cells calculations. Does this make sense
 
You can do it with macros by setting the range to
calculate.

Sub ManCalc()

With Application
.Calculation = xlManual
.MaxChange = 0.001
End With
Range("H4:H6").Select
Selection.Copy
Range("F4").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Range("F7").Calculate
End Sub

You can reset the calculation at the end to something like
xlAuto

Regards
Peter
-----Original Message-----
I've tried manually calculating and it won't work
because as I move down the rows it will manually calculate
all formulas within sheet. I'm adding information to
target cells in which the formula cells are pulling from.
Then I need to keep changing the target cells without
altering the prior cells calculations. Does this make
sense?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top