BalthazarKilmeany
New Member
- Joined
- May 11, 2018
- Messages
- 3
Can somebody help?
I am using the below code to strip out columns of excess data that i dont require from one of our systems reports.
This is currently working perfectly fine, however, is it possible to have it to filter row 1 in the new colums to save on that extra task and then filter on specific data?
e.g.
This is the code i have used to strip the excess columns out
Now that i have my new colums A, B, C, D, E
I want to filter Row 1 (Column Headings)
Then filter Row C based on a unique number, such as "11489"
this would then show all rows with that number in
I am using the below code to strip out columns of excess data that i dont require from one of our systems reports.
This is currently working perfectly fine, however, is it possible to have it to filter row 1 in the new colums to save on that extra task and then filter on specific data?
e.g.
This is the code i have used to strip the excess columns out
Sub sbVBS_To_Delete_Specific_Multiple_ColumnsK()
Sheets("Events").Range("B:B,D:D,E:E,F:L,N:X").EntireColumn.Delete
End Sub
Now that i have my new colums A, B, C, D, E
I want to filter Row 1 (Column Headings)
Then filter Row C based on a unique number, such as "11489"
this would then show all rows with that number in