gheyman
Well-known Member
- Joined
- Nov 14, 2005
- Messages
- 2,347
- Office Version
- 365
- Platform
- Windows
I have code that will filter to a specific value but I need to filter out "0" from the identified table column (I dont want to show the rows that have 0 value)
Code that filters to a specific value
I tried recording a macro but I got a message saying there was too many values and the macro stoped
Any help is appreciated.
Code that filters to a specific value
Code:
Sub FilterRanges()
If Range("D9").Value = Range("O15").Value Then
With ActiveSheet.ListObjects("ProPricer_Quote_Data_Merged")
.Range.AutoFilter Field:=.ListColumns("50q74").Index, Criteria1:=Range("C8").Value
End With
End
Else
End If
End Sub
I tried recording a macro but I got a message saying there was too many values and the macro stoped
Any help is appreciated.