Live data in on sheet want to copy to another sheet if value in cell C1 changes (Which is time)

kk9242

New Member
Joined
Oct 31, 2014
Messages
2
Hi All,

I have a sheet in which I get Live data onto assume from A1 to G1

when ever data changes in C1 I want to copy to another sheet and keep a database sort off
Meaning when ever data changes in C1 want to copy into new row untill 65536

Also another thing I need to copy the same into word with ',' sperator for each cell and create another database.

Thanks in advance

Cheers
 

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.
Also I have this below code which copies A1 A2 to new sheet every sec but me unable to code this for A2 to g2 and make a new row entry.

Sub Datafeed1()

With Sheets("Store")
rw = .Cells(.Rows.Count, 1).End(xlUp).Row + 1
.Range(.Cells(rw, 1), .Cells(rw, 2)).Value = Sheets("datafeed").Range("a2:g2").Value
End With
Application.OnTime Now + TimeSerial(0, 0, 3), "Datafeed1" ' run again after 3 secs
End Sub

Please help
 
Upvote 0

Forum statistics

Threads
1,215,772
Messages
6,126,803
Members
449,337
Latest member
BBV123

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