Nowherefast
New Member
- Joined
- May 18, 2009
- Messages
- 23
Hello:
I need some assistance. I am trying to retrieve rows of data based on specific values of a column (field 15). I wrote a macro (see below - I only copied a few UPC items) by using Filter and then I was going to input the remaining UPC item values, but it's over 100 and I ran out of room in the line item. I am unable to figure out how to continue onto the next line item so I can proceed to input the remaining UPC items.
My file has over 65,000 rows and can vary from week to week but no higher than 75,000 and I need to retrieve approx 100 UPC items into another sheet or file every week.
Please see below and advise. Thank you.
Sub MacroUPC()
'
' MacroUPC Macro
'
'
ActiveSheet.Range("$A$1:$BP$80000").AutoFilter Field:=15, Criteria1:=Array( _
"00020842055563", "00034000631506", "00037795111147", "00071818302310"), Operator _
:=xlFilterValues
End Sub
I need some assistance. I am trying to retrieve rows of data based on specific values of a column (field 15). I wrote a macro (see below - I only copied a few UPC items) by using Filter and then I was going to input the remaining UPC item values, but it's over 100 and I ran out of room in the line item. I am unable to figure out how to continue onto the next line item so I can proceed to input the remaining UPC items.
My file has over 65,000 rows and can vary from week to week but no higher than 75,000 and I need to retrieve approx 100 UPC items into another sheet or file every week.
Please see below and advise. Thank you.
Sub MacroUPC()
'
' MacroUPC Macro
'
'
ActiveSheet.Range("$A$1:$BP$80000").AutoFilter Field:=15, Criteria1:=Array( _
"00020842055563", "00034000631506", "00037795111147", "00071818302310"), Operator _
:=xlFilterValues
End Sub