Is it possible to freeze or break a link automatically?

cdo1ca

New Member
Joined
Nov 14, 2005
Messages
2
Is it possible to freeze of break a link automatically after the value has been entered into the target cell? I would like to link a cell that changes daily to a row in another worksheet that will represent the full month, so each day in the monthly sheet I would like that days linked value to be saved so that it will not change the next day when I change the daily source cell.
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Welcome

1. Press Alt-F11 to bring up VBA
2. In the left pane, double-click the sheet to attch this to
3. Paste this into the right pane:

Private Sub Worksheet_Change(ByVal Target As Range)
if target.column = 1 then target.formula = target.value
End Sub

This assumes you want this to happen to anything in column A.
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,279
Members
449,075
Latest member
staticfluids

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