السلام عليكم
هذا هو الكود بالكامل
Sub Shift_from_Main()
Worksheets("MAIN").Select
a = WorksheetFunction.CountA(Range("b:b")) - 1
Range("B4").Select
For i = 1 To a ' check how many data rows
Worksheets("MAIN").Select
10 ActiveCell.Offset(1, 0).Select
20 If ActiveCell.Value > 1 Then GoTo 30 ' loop till found there's a data
GoTo 10
30 ad1 = ActiveCell.Address 'there's a data
rw = 1 ' check how many data rows
110 ActiveCell.Offset(1, 0).Select
If ActiveCell.Value > 1 Or ActiveCell.Offset(0, 4).Value < 1 Then GoTo 130 ' loop till found next data
rw = rw + 1
If rw = 20 Then GoTo 900
GoTo 110
130 If ActiveCell.Offset(0, 4).Value < 1 Then xx = "STOP"
Range(ad1).Select
agnt = ActiveCell.Offset(0, 2).Value ' Wakeel - Agent
For j = 0 To 149 'gr_sht = the Sheet which have Group which contain that agent
If agnt = Range("Q7").Offset(j, 0).Value Then
gr_sht = Range("P7").Offset(j, 0).Value
pos_ = (j / 10 - Int(j / 10)) * 10
GoTo 135
End If
Next j
135 ad2 = ActiveCell.Offset(rw - 1, 1).Address
ad3 = ActiveCell.Offset(0, 4).Address
ad4 = ActiveCell.Offset(rw - 1, 7).Address
Union(Range(ad1, ad2), Range(ad3, ad4)).Select
Selection.Copy
Worksheets(gr_sht).Select ' going to the correct worksheet
Range("B4").Offset(100, (8 * pos_ + 3)).Select 'going to the correct Agent-Wakeel position
Selection.End(xlUp).Select
ActiveCell.Offset(1, -3).Select
ActiveSheet.Paste
If xx = "STOP" Then GoTo 900
Next i
900
Application.CutCopyMode = False
Worksheets("MAIN").Select
Range("B4").Select
End Sub
فقط عليك بتغيير الرقم 7 إلي 9 في السطر الثالث من العنوان 135
(الخامس عشر من الأسفل لأعلي)
الذي كان
ad4 = ActiveCell.Offset(rw - 1, 7).Address
ليكون
ad4 = ActiveCell.Offset(rw - 1, 9).Address