Sub 宏1()
'
' 宏1 宏
'

'
    With Selection.Validation
        .Delete
        .Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:=xlBetween, Formula1:="a,b,c,d"
        .IgnoreBlank = True
        .InCellDropdown = True
        .InputTitle = ""
        .ErrorTitle = ""
        .InputMessage = ""
        .ErrorMessage = ""
        .IMEMode = xlIMEModeNoControl
        .ShowInput = True
        .ShowError = True
    End With
End Sub

 

相关文章:

  • 2021-06-20
  • 2021-12-13
  • 2021-11-23
  • 2021-04-25
  • 2021-05-24
  • 2022-12-23
猜你喜欢
  • 2022-01-18
  • 2022-02-01
  • 2021-11-13
  • 2021-06-15
  • 2021-11-22
  • 2021-11-18
相关资源
相似解决方案