![]() |
#1
|
|||
|
|||
![]()
Hi to every one;
At first thanks in advance to everyone that read my question, and specially help me to fix my problem. Here what I want to do: 1. I have 2 worksheet named Pending & Records. 2. Column in Pending worksheet: A: Date, B: Delivery To, C: Delivery to office, D: Delivery to Manager, E: Subject, F: Date & G: Letter No. 3. Column in Records worksheet: A: Date, B: Letter No. & C: Subject. 4. When entered number in cell G (Letter No.) of Pending worksheet, the below cells copy to specified cells in Records worksheet. · E (Subject) in Pending worksheet sit in C (subject) of Records worksheet. · F (Date) in Pending worksheet sit in A (Date) of Records worksheet. · G (Letter No.) in Pending worksheet sit in B (Letter No.) of Records worksheet. 5. Deleted the row that copy in Pending worksheet. 6. Sort the rows in Records worksheet according to Letter No. (Column C). This is codes that I write for what I want to do (not work good) and some screenshot: Private Sub Worksheet_Change(ByVal Target As Range) If Target.Column = 6 Then If Len(Target.Value) > 0 Then Dim r As Range Dim a As String Dim b As String b = "sheet3!A" & Sheet1.Cells(1, 9) + 3 & ":C" & Sheet1.Cells(1, 9) + 3 a = "E" & Target.Row & ":G" & Target.Row Dim r1, r2 As Range r1 = Sheet1.Range(a) Sheet2.Range(b).Value = r1 Sheet1.Range(a).EntireRow.Delete End If End If End Sub Last edited by pourmalla; 04-02-2017 at 12:13 AM. Reason: upload file |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
Alimou | Excel Programming | 4 | 02-06-2017 07:35 AM |
![]() |
mcronin | Excel Programming | 3 | 06-15-2016 09:44 AM |
a macro that can copy data from copy.xls to our current excel macro.xls based on criteria: | udhaya | Excel Programming | 1 | 11-12-2015 10:12 AM |
![]() |
konopca | Word VBA | 5 | 02-20-2014 02:34 PM |
![]() |
KD999 | Excel Programming | 1 | 07-20-2012 08:58 AM |