Forcing an individual cell to manual calculation

jnjcobb

New Member
Joined
Nov 13, 2013
Messages
2
Hi,

I am working on a workbook that is a personnel managing tool. One of my sheets retrieves data from another sheet and displays it in cells d3-d6. All 4 cells use the same data source for their retrieval. Each cell represents a quarter of the year. When that quarter is completed I want to insert yes to c3 and prevent d3 from further updating itself (as shown in the table below).(The values shown below are arbitrary numbers that would normally have a formula in their place.)
cd
3yes18
419
519
619

<tbody>
</tbody>
I have also posted this on excel forum. The link to that post is below:
How can I freeze a value in a cell with a formula without removing the formula.
The worksheet I attached to that forum has different values to be in the c3 block, but I am not worried about that, because I can change that very easily.

The code I have written for this is below, but I have not gotten any result out of this. I am typing it into VBE under my sheet 5 module.
Code:
Sub Personnel_Tracker()    
    If Range(Sheet5!c3).Value = "Yes" Then
        Range(Sheet5!d3).Calculation = xlCalculationManual    
    Else: Range(Sheet5!d3).Calculation = xlCalculationAutomatic    
    End If
End Sub

This tracker is for my military unit, and I am trying to improve on its capabilities. I am out of my league with this, but am hoping I can at least get some solid direction for where to look/go for help.

Thanks in advance for any help with this!
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December

Forum statistics

Threads
1,216,058
Messages
6,128,532
Members
449,456
Latest member
SammMcCandless

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