Tôi down file data của Mr Hiếu mà chưa hiểu đoạn sau
Làm sao từ ComboBox khi Enter thì nhảy sang ô khác
Đính kèm Code
Nhờ Mr Hiếu và các bạn giải thích hộ, cám ơn!
Các bạn giải thích hộ, mình mới hiểu 1 chút
If S200.Range("B8").Value = "" Then
S200.CBDMKH.Visible = False
nếu B8 ="" thì ComboBox tắt
If Target.Column = 2 And Target.Row = 2 Then
Application.MoveAfterReturnDirection = xlToRight
With S200.CBDMKH
.Visible = True
Nếu dòng là 2 cột 2 thì hiện CBDMKH, enter thì right
Mình không hiểu câu nào mà Enter thì thoát ra combox box cả
Xin chỉ giáo, cám ơn các bạn nhiều
Làm sao từ ComboBox khi Enter thì nhảy sang ô khác
Đính kèm Code
PHP:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If S200.Range("B8").Value = "" Then
S200.CBDMKH.Visible = False
On Error GoTo thoat
Dim bEnableEvents As Boolean
bEnableEvents = Application.EnableEvents
Application.EnableEvents = False
If Target.Column = 2 And Target.Row = 2 Then
Application.MoveAfterReturnDirection = xlToRight
With S200.CBDMKH
.Visible = True
.Left = ActiveCell.Left
.Top = ActiveCell.Top
.Width = ActiveCell.Width
.Height = ActiveCell.Height
.ListFillRange = "DMKH"
.LinkedCell = ActiveCell.Address
End With
End If
thoat: Application.EnableEvents = bEnableEvents
End If
End Sub
Các bạn giải thích hộ, mình mới hiểu 1 chút
If S200.Range("B8").Value = "" Then
S200.CBDMKH.Visible = False
nếu B8 ="" thì ComboBox tắt
If Target.Column = 2 And Target.Row = 2 Then
Application.MoveAfterReturnDirection = xlToRight
With S200.CBDMKH
.Visible = True
Nếu dòng là 2 cột 2 thì hiện CBDMKH, enter thì right
Mình không hiểu câu nào mà Enter thì thoát ra combox box cả
Xin chỉ giáo, cám ơn các bạn nhiều