yasse.w.2010 قام بنشر مايو 27, 2022 قام بنشر مايو 27, 2022 الاساتذه الكرام السلام عليكم ورحمة الله و بركاته ..ارجو من حضارتكم التعديل على هذا الكود بحيث يبحث باي حرف في اي كلمة ارجو من حضارتكم التعديل على هذا الكود بحيث يبحث باي حرف في اي كلمة ...بمعني ( احمد علي خليل ) ممكن ابحث بحرف أ او ع او خ Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim xCombox As OLEObject Dim xStr As String Dim xWs As Worksheet Dim xArr Set xWs = Application.ActiveSheet On Error Resume Next Set xCombox = xWs.OLEObjects("DropListTemp") With xCombox .ListFillRange = "" .LinkedCell = "" .Visible = False End With If Target.Validation.Type = 3 Then Target.Validation.InCellDropdown = False Cancel = True xStr = Target.Validation.Formula1 xStr = Right(xStr, Len(xStr) - 1) If xStr = "" Then Exit Sub With xCombox .Visible = True .Left = Target.Left .Top = Target.Top .Width = Target.Width + 5 .Height = Target.Height + 5 .ListFillRange = xStr If .ListFillRange = "" Then xArr = Split(xStr, ",") Me.DropListTemp.List = xArr End If .LinkedCell = Target.Address End With xCombox.Activate Me.DropListTemp.DropDown End If End Sub Private Sub DropListTemp_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer) Select Case KeyCode Case 9 Application.ActiveCell.Offset(0, 1).Activate Case 13 Application.ActiveCell.Offset(1, 0).Activate End Select End Sub بحث (2).xlsm
الردود الموصى بها
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.