Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = [k5].Address Then
'''''''''''''''''''''''''''''^^^^
Range("B2:G" & Cells(Rows.Count, 2).End(xlUp).Row).AutoFilter
ActiveWorkbook.Worksheets("工作表1").AutoFilter.Sort.SortFields.Clear
ActiveWorkbook.Worksheets("工作表1").AutoFilter.Sort.SortFields.Add Key:=Range( _
"B2:B" & Cells(Rows.Count, 2).End(xlUp).Row), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:= _
xlSortNormal
With ActiveWorkbook.Worksheets("工作表1").AutoFilter.Sort
.Header = xlYes
.MatchCase = False
.Orientation = xlTopToBottom
.SortMethod = xlPinYin
.Apply
End With
Range("B2:G" & Cells(Rows.Count, 2).End(xlUp).Row).AutoFilter
shop = [k3]
Code = [k5]
'^^^^^^^^^^^^^^
For Each Rng In Range("B2:B" & Cells(Rows.Count, 2).End(xlUp).Row)
If Rng = shop And Rng.Offset(0, 2) = Code Then
'''''''''''''''''''''''''''''''''''^^^^^^^^^^^^^^^'
K = K + 1
If K = 1 Then
Set Rn = Rng.Offset(0, 1)
Else
Set Rn = Union(Rn, Rng.Offset(0, 1))
End If
End If
Next
aa = Rn.Address
If aa = "" Then
Exit Sub
Else
With [L3].Validation
.Delete
.Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:=xlBetween, Formula1:="=" & aa
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = ""
.ErrorMessage = ""
.IMEMode = xlIMEModeNoControl
.ShowInput = True
.ShowError = False
End With
End If
[L3].Select
'^^^^^^^^^^
[L3] = "請選擇日期"
End If
If Target.Address = [L3].Address Then
If [L3] = "請選擇日期" Then End
For Each Rang In Range("B2:B" & Cells(Rows.Count, 2).End(xlUp).Row)
If Rang = [k3] And Rang.Offset(0, 1) = [L3] And Rang.Offset(0, 2) = [k5] Then
[L5] = Rang.Offset(0, 5) '''''''''''''''''''''''''''''''''''''''''^^^^^^^^^^^^^^'
End
End If
Next
End If
End Sub作者: maiko 時間: 2015-4-22 05:33