- Katılım
- 9 Aralık 2009
- Mesajlar
- 160
- Excel Vers. ve Dili
- Office 2016 TR 64 Bit
- Altın Üyelik Bitiş Tarihi
- 31/06/2023
merhaba macro yaptım yalnız veri filtrelemede 0 hariçindekileri seçmesini istiyorum .kodu düzenleyebilir misiniz?
Sheets("2 HAKEDİŞ GİRİŞİ").Select
ActiveSheet.Range("$A$2:$G$55").AutoFilter Field:=5, Criteria1:=Array( _
"11,50", "20,00", "5,00"), Operator:=xlFilterValues
ActiveWorkbook.Worksheets("2 HAKEDİŞ GİRİŞİ").AutoFilter.Sort.SortFields.Clear
ActiveWorkbook.Worksheets("2 HAKEDİŞ GİRİŞİ").AutoFilter.Sort.SortFields.Add _
Key:=Range("A2:A55"), SortOn:=xlSortOnValues, Order:=xlAscending, _
DataOption:=xlSortNormal
With ActiveWorkbook.Worksheets("2 HAKEDİŞ GİRİŞİ").AutoFilter.Sort
.Header = xlYes
.MatchCase = False
.Orientation = xlTopToBottom
.SortMethod = xlPinYin
.Apply
End With
End Sub
Sheets("2 HAKEDİŞ GİRİŞİ").Select
ActiveSheet.Range("$A$2:$G$55").AutoFilter Field:=5, Criteria1:=Array( _
"11,50", "20,00", "5,00"), Operator:=xlFilterValues
ActiveWorkbook.Worksheets("2 HAKEDİŞ GİRİŞİ").AutoFilter.Sort.SortFields.Clear
ActiveWorkbook.Worksheets("2 HAKEDİŞ GİRİŞİ").AutoFilter.Sort.SortFields.Add _
Key:=Range("A2:A55"), SortOn:=xlSortOnValues, Order:=xlAscending, _
DataOption:=xlSortNormal
With ActiveWorkbook.Worksheets("2 HAKEDİŞ GİRİŞİ").AutoFilter.Sort
.Header = xlYes
.MatchCase = False
.Orientation = xlTopToBottom
.SortMethod = xlPinYin
.Apply
End With
End Sub