我有两个对话框列表字段Cutt_Start
,并且Cutt_End
两个字段都有以下示例选择:一月 | 2 月1
日 | 3 月2
日 | 3
...
十二月 | 12
现在,我想要发生的是,当您在 上选择一月Cutt_Start
和在 上选择三月时Cutt_End
,它应该会提示一个错误,即Month2 should be next to Month1
. 我尝试了这段代码,但没有任何反应。
If Cutt_Start = "January" & Cutt_End <> "February" Then
Msgbox "Month2 should be next to Month1"
Else
Msgbox "January to February selected"
End If
你能帮助我吗?