码迷,mamicode.com
首页 > 其他好文 > 详细

Excel怎么下来框多选

时间:2016-10-17 16:13:03      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:

打开Exlce,技术分享

确定,然后技术分享

右击查看代码,把这段代码复制到新建的文件里面技术分享

此时Excel会给出提示,选择否,技术分享,系统会提示保存,在保存的时候选择启用宏的工作簿然后保存,此时Excel下拉框多选就搞定了,最后,代码如下:

Option Explicit

Sub Worksheet_Change(ByVal Target As Range)
‘让数据有效性选择 可以多选,重复选
Dim rngDV As Range
Dim oldVal As String
Dim newVal As String
If Target.Count > 1 Then GoTo exitHandler

On Error Resume Next
Set rngDV = Cells.SpecialCells(xlCellTypeAllValidation)
On Error GoTo exitHandler

If rngDV Is Nothing Then GoTo exitHandler

If Intersect(Target, rngDV) Is Nothing Then
‘do nothing
Else
Application.EnableEvents = False
newVal = Target.Value
Application.Undo
oldVal = Target.Value
Target.Value = newVal
If oldVal = "" Then
Else
If newVal = "" Then
Else
Target.Value = oldVal _
& ", " & newVal
End If
End If
End If

exitHandler:
Application.EnableEvents = True
End Sub

 转载请注明出处!

 

Excel怎么下来框多选

标签:

原文地址:http://www.cnblogs.com/boosasliulin/p/5970120.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!