![]() |
|
|
|
#2
|
|||
|
|||
|
Dear k31453,
Give me a sample Excel file and i will help you with it. |
|
#3
|
|||
|
|||
|
Attached is macro-enabled sample file.
|
|
#4
|
|||
|
|||
|
I would use this on the Sheet's module
Code:
Sub Button1_Click()
Dim nr As Long 'next row
Dim rng As Range
Set rng = Range("A7:Q7")
nr = Cells(Rows.Count, "C").End(xlUp).Row + 1
rng.Copy Cells(nr, 1)
rng.ClearContents
Range("A7").Select
Application.CutCopyMode = False
End Sub
|
|
#5
|
|||
|
|||
|
Thank you very much everyone
|
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
How to import excel calender data into outlook - with a click of a button
|
levrone | Excel | 24 | 10-01-2021 05:33 AM |
| How do I create a personal event logging form? | kton | Office | 1 | 12-22-2014 11:56 PM |
Button Filtering Data in a 2010 Report
|
runswick | Word | 1 | 10-20-2012 11:03 AM |
| Logging junk mail | iforetnot | Outlook | 0 | 04-14-2011 07:48 AM |
autofill data using keywords or button clicks
|
IG&H | Excel | 1 | 01-17-2010 08:08 AM |