Excel population

DAWG2006

Board Regular
Joined
Feb 15, 2009
Messages
86
Is there anyway to get a cell (A12) to populate something from another cell (AE30) without entering a formula into the original cell (A12).

Thanks in advance
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.

Gerald Higgins

Well-known Member
Joined
Mar 26, 2007
Messages
9,258
So are you saying you want something to appear in cell A12, based on what is in AE30, and A12 must not contain a formula ?

If so, no, I don't think you can do this, unless you want to copy and paste the AE30 value into A12, either manually or using a macro.
 
Upvote 0

lenze

Legend
Joined
Feb 18, 2002
Messages
13,690
With code!!
Code:
Private Sub WorkSheet_Change(Byval Target as Range)
If Target.Address <> "AE30" Then Exit Sub
Range("$A$12") = Target
End Sub

lenze
 
Upvote 0

DAWG2006

Board Regular
Joined
Feb 15, 2009
Messages
86
Well here's the follow up question, is there any way to get it to populate with the formula in A12, but when I delete what was populated the formula remains?
 
Last edited:
Upvote 0

Gerald Higgins

Well-known Member
Joined
Mar 26, 2007
Messages
9,258
The formula will in A12 will remain if you delete what was in another cell.
Are you saying you want the VALUE calculated by the formula to remain ?
Again, only by copy pasting the value in, either manually or with a macro.

Try Lenze's suggestion.
 
Upvote 0

DAWG2006

Board Regular
Joined
Feb 15, 2009
Messages
86
How do you set up a Macro for that?


right now it's being populated by a vlookup





Delete the Value of A12 but having the formula remain.
 
Upvote 0

Forum statistics

Threads
1,191,579
Messages
5,987,425
Members
440,096
Latest member
yanaungmyint

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
Top