replace all data in cell (insert cell) with data in cell (insert cell).

JustinEP

New Member
Joined
Sep 4, 2011
Messages
23
Having trouble figuring this one out:

I want to put a formula in cell A1 that says: replace all data in cell C1 with data in cell B1.

If it cannot be done with a formula, could someone help with a macro?
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Cant be done, with a formula. How would you like to trigger this event?

Maybe a small button. Even just entering the value and pressing enter would be fine. I will have approximately 30 fields that I would want to update, some may need updating, others won't. Some will be simple yes or no choices, could those still use a list and be triggered with just clicking out of the cell?

Also, if there was no value added to the new cell, I would not want that blank value to update the original cell.

Thank you very much!
 
Upvote 0
So, if you enter a new value in any cell in col A, you want the corresponding cell in col C populated with the corresponding value from col B ?

Is that correct ?
 
Upvote 0
If Target.Column = 3 And Target.Row < 11 Then
Target.Offset(0, -1).Value = Target.Value
End If

upon changing a value in c1:c10, copy that value to corresponding row in col B
 
Upvote 0
If Target.Column = 3 And Target.Row < 11 Then
Target.Offset(0, -1).Value = Target.Value
End If

upon changing a value in c1:c10, copy that value to corresponding row in col B

That looks awesome. Do you mind if I complicate this further?

The value in B1 is =indirect(A1). A1 contains =text("Sheet2!K1",""). How would I send the new data in C back to Sheet2:K1, where the actual data in B is located?
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,551
Messages
6,179,480
Members
452,915
Latest member
hannnahheileen

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