Hi
I have some logs with alot of columns (range A5:CQ:5), I need to read this range, and if it have some value print the entire column on another worksheet.
e.g.
File | Shot | Line Name |Point Number | etc until CQ:5
1 20 1 50
Let's say I only need the columns "File" and "Point Number" to be printed on another worksheet named "Result", my idea was something like this
Sub SelectColumns()
Dim Column As Range
Sheets.Add.Name = "Result"
For Each Column In Range("A5:CQ5")
If Column.Value = "File" Or Column.Value = "Point Number" Then
Sheets.Select ("Result")
# print columns on new worksheet
End If
Next
End Sub
Bookmarks