vba help for copy range every 15 minutes

shahnanu

New Member
Joined
Mar 19, 2013
Messages
8
i get in my work sheet prices updated from exchange in row 2 every minutes
for 30 cells i.e.from cell A2 to Z2

i want to copy value of this row copied every 15 minutes in same worksheet
from row 3 onwards( or new rows ) for study of rate changes every minutes

i use excel 2007

thank you for the help
plz answer if u have any vba code to paste
 
shahnanu,

You are very welcome. Glad I could help.

Thanks for the feedback. And, come back anytime.
 
Upvote 0

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
hi..

could someone help me to modify the above solution provided in this thread.

instead of copying values of rows a2 to z2

i want it to copy values of column b1 to b100 (to be copied every 15 mins )

the concept is the same.

Thanks
Bhushan Shah
 
Upvote 0
hi..

could someone help me to modify the above solution provided in this thread.

instead of copying values of rows a2 to z2

i want it to copy values of column b1 to b100 (to be copied every 15 mins )

the concept is the same.

Thanks
Bhushan Shah

bhushanvshah,

Because of the range of the raw data, screenshots may not work correctly.

So that we can get it right on the first try:

1. Can we see the actual raw data worksheet?

2. And, can we see the worksheet that will be receiving the results (manually formatted by you for the results that you are looking for)?


You can post your workbook/worksheets to the following free site (sensitive data changed), mark the workbook for sharing, and, provide us with a link to your workbook:

https://dropbox.com
 
Last edited:
Upvote 0
Dear hiker95,

Thanks for your reply.

just did some trial and error on your code...

'nr = Sheets("Sheet2").Range("A" & Rows.Count).End(xlUp).Offset(1).Row



and arrived at the solution !!

nr = Sheet2.Cells(1, Sheet2.Columns.Count).End(xlToLeft).Offset(, 1).Column

Working smoothly as it can get... thanks once again.. Cheers
Bhushan
 
Upvote 0
just did some trial and error on your code...

'nr = Sheets("Sheet2").Range("A" & Rows.Count).End(xlUp).Offset(1).Row

and arrived at the solution !!

nr = Sheet2.Cells(1, Sheet2.Columns.Count).End(xlToLeft).Offset(, 1).Column

Working smoothly as it can get

bhushanvshah,

Nicely done.

Glad that you were able to solve your request.

And, come back anytime.
 
Upvote 0

Forum statistics

Threads
1,223,234
Messages
6,170,891
Members
452,366
Latest member
TePunaBloke

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