Private Sub Worksheet_SelectionChange(ByVal target As Range)
Application.EnableEvents = False
If Selection.Columns.Count >= 16384 Then
End If
Application.EnableEvents = True
End Sub
這是我目前在用的,可覺得怪怪的。有沒有更有效率的判斷方式

X