Yazeka
Arama sonuçlarına göre oluşturuldu
Excel'de çoklu seçim yapmak için iki yöntem kullanılabilir:
- VBA Kodu Kullanma:
Private Sub Worksheet_Change(ByVal Target As Range) 'Updated by Extendoffice 20240118 Dim xRng As Range Dim xValue1 As String Dim xValue2 As String Dim delimiter As String Dim TargetRange As Range Set TargetRange = Me.UsedRange delimiter = ", " If Target.Count > 1 Or Intersect(Target, TargetRange) Is Nothing Then Exit Sub End If On Error Resume Next Set xRng = TargetRange.SpecialCells(xlCellTypeAllValidation) If xRng Is Nothing Then Exit Sub End Application.EnableEvents = False Application.EnableEvents = True On Error GoTo 0 End Sub
- Kutools for Excel Kullanma:
Ayrıca, Excel'de nesneleri seçerken Shift veya Ctrl tuşunu basılı tutarak birden fazla nesne seçebilirsiniz 3.
5 kaynaktan alınan bilgiyle göre: