Capture From one column to another

antslyer

Board Regular
Joined
Oct 25, 2005
Messages
53
Hi there,

I have a Live Price which is running at all time, therefore, i need to capture at the moment or when i entered something onto another column.

For example:

Live Price running in column "G1"
when i enter "take" or anything in column "H1"
then i wanted the running price in "G1" will appear in "F1" without running/fixed.

I just need a simple formula for this work, no macro or visual basic is required. Please advise. Thank you so much.
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Hopefully I read this right

You just want to enter the value from column G into F when you type "take" into H

In F have =IF(H1="take", G1, "")

I'm not sure how often the cells change but if you want to lock down a price you WILL need VBA to solve your issue.

HTH

Dave
 
Upvote 0
Hmm... if not wrong with your formula the price will still be running in F1 cell and it won't fixed or lock the price. Anyone can help me?
 
Upvote 0
If you right click on the sheet tab and go to view code then paste this

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Target.Value = "" Then Exit Sub
If Target.Address = "$H$1" Then Range("F1") = Range("G1").Value
End Sub

when ever anything is entered into H1 it will put the value of G1 into F1
 
Upvote 0

Forum statistics

Threads
1,214,827
Messages
6,121,809
Members
449,048
Latest member
greyangel23

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