Copy Range D6:P6 in every 2 minutes And PASTE Values to Down Cells Continuesly in every 2 minutes

tkasiddique

New Member
Joined
Aug 26, 2019
Messages
4
Dear Sir,
Iam a small NSE Option Trader.
For Open Interest Tracker, i have designed a excell sheet Name OI Tracker.
In this sheet i get the updated Open Interest Values From D6:P6 (These Values get updated when the Open Interest data Updates in www.nse.com. So i need to get it copied the below cells in every 2 minutes (for doing analysis on market Trends).

For weeks and months i tried a lot of ways by watching you tube and all. But i couldnt get a correct solution.
So last only i reached this Group. so i hope from this board i have a solution for my probs.

expect a positive actions from the experts over here.
Thank you very much
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
No sir. not used. Because iam not familiar with codes. i use excel copy paste only.
i used manual copy and past every time. i refresh first manually, when the value changes, i copy the row and past special manually down to next raw.
If you can help then will be great sir.
 
Upvote 0
Hello,

You could test following

Code:
Option Explicit

Dim t As Date

Sub StartMacro()
    t = DateAdd("s", 120, Time)
    Application.OnTime t, "MyMacro"
End Sub

Sub MyMacro()
    Rows("7:7").Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
    Range("D7:P7").Value = Range("D6:P6").Value
End Sub

Sub StopMacro()
    Application.OnTime t, "MyMacro", False
End Sub

Hope this will help
 
Last edited:
Upvote 0
Sir, i checked today and its working.
it inserts new raw below d6 like that it come. But my requirment is that Copy D6:P6 should copy and paste Down wards like
fist paste at D7, then next Copy Paste to D8, Next to D9 like that it needed.
If it is not possible, then also iam happy with it.
Thank you for your great Support and actions.
Thanks alot Boss
 
Upvote 0
Hello,

Below is your modification

Code:
Option Explicit

Dim t As Date

Sub StartMacro()
    t = DateAdd("s", 120, Time)
    Application.OnTime t, "MyMacro"
End Sub

Sub MyMacro()
Dim last As Long
    last = ActiveSheet.Cells(Rows.Count, "D").End(xlUp).Row + 1
    Range("D" & last & ":" & "P" & last).Value = Range("D6:P6").Value
End Sub


Sub StopMacro()
    Application.OnTime t, "MyMacro", False
End Sub

Hope this will help
 
Upvote 0
Sir,
Sorry for the delay. Due to work busy this delay happened.
Sir,
It is working as i wish.Copy and Past to the down ward.
But the problem is only 4 or 5 rows getting filled.
Then it is stopping.
If again i run macro, then it working again for some rows.
Iam doing run macro continuesly, and getting worked.
Thank you very much Sir
 
Upvote 0

Forum statistics

Threads
1,214,642
Messages
6,120,701
Members
448,980
Latest member
CarlosWin

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