jrobertsandco
New Member
- Joined
- Sep 12, 2011
- Messages
- 6
I am making a master inventory sheet for my Real Estate Company. I have created 5 tabs to track the data for each department. The tabs are as follows:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column <> 1 Then Exit Sub
Range(("A6:j6"), Cells(Rows.Count, 1).End(xlUp)).Sort Key1:=Range("A7:j7"), Order1:=xlAscending, Header:=xlYes, OrderCustom:=1, MatchCase:=True, Orientation:=xlTopToBottom
End Sub
This works great for the first tab, however although the other tabs populate the information on the general property information tab, the colums to the right of that info do not sort with the first tab.
Can anyone help? Am I explaining this well enough? lol
- General Property Info
- Agent Action Items
- Accounting Action Items
- C2C Action Items
- 2011 Closed Files
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column <> 1 Then Exit Sub
Range(("A6:j6"), Cells(Rows.Count, 1).End(xlUp)).Sort Key1:=Range("A7:j7"), Order1:=xlAscending, Header:=xlYes, OrderCustom:=1, MatchCase:=True, Orientation:=xlTopToBottom
End Sub
This works great for the first tab, however although the other tabs populate the information on the general property information tab, the colums to the right of that info do not sort with the first tab.
Can anyone help? Am I explaining this well enough? lol