Hi All
Can anyone tell me how to revise this macro to run based on a value entered into sheet "PasteDataHere" Cell T1? It currently works by the entry in red
Thanks
![]()
Please Login or Register to view this content.
Hi All
Can anyone tell me how to revise this macro to run based on a value entered into sheet "PasteDataHere" Cell T1? It currently works by the entry in red
Thanks
![]()
Please Login or Register to view this content.
Last edited by hazzaska; 12-11-2012 at 02:35 PM. Reason: SOLVED
PHP Code:
Dim X As Byte
Do While x < 10
Sheets("PasteDataHere").Select
Range("A1:K49").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet3").Select
Range("A11").Select
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False
Sheets("PasteDataHere").Select
Application.CutCopyMode = False
Selection.Delete Shift:=xlUp
Sheets("Sheet3").Select
Range("M1").Select
Call GreyCalc
x = x + 1
If X >= Sheets("PasteDataHere").[T1].Value Then Exit Do '<=|'
Loop
Hi hazzaska,
Untested, but see how this goes:
HTH![]()
Please Login or Register to view this content.
Robert
____________________________________________
Please ensure you mark your thread as Solved once it is. Click here to see how
If this post helps, please don't forget to say thanks by clicking the star icon in the bottom left-hand corner of my post
Hi Thanks for the responses i tailored your solution Trebor76 to this and it works if i manually enter it, can it be done if the value in "paste data here" T1 comes from a formula or even can the macro run until there is no data left in the "paste data here" sheet"
Heres the one that works if i manually enter a value in T1
Thanks again much appreciated.![]()
Please Login or Register to view this content.
Yes, however the value in cell T1 gets there it will work.can it be done if the value in "paste data here" T1 comes from a formula
Thanks for your help Trebor76 it works a treat i had to adjust the following in red otherwise it would run the macro half the amount of times
Cheers
![]()
Please Login or Register to view this content.
Glad it's all sorted
If you could mark the the thread as solved when you get a moment it would be appreciated.
Robert
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks