我正在制作一个创建报告的 Excel 表。
我允许用户输入月份(作为整数:例如:1 表示 Jan,2 表示 Fev,依此类推)。
我可以将它收集在一个变量中,比如 x。
现在,我想使用这个 x 值来搜索为特定月份输入的所有日期并创建报告。我正在尝试使用 month() 函数。我怎么无法将它与 x 进行比较。x 被定义为一个整数变量。
我应该用什么来解决这个问题。?
Function mois_de_date()
mois = InputBox("Choisissez le mois (Entrer la valeur Numérique)!!! (1 pour Janvier, 2 pour Fév .... )", "Titre")
If mois > 12 & mois <= 0 Then
If mois = 1 Then
MsgBox "Janvier"
End If
If mois = 2 Then
MsgBox "Février"
End If
If mois = 3 Then
MsgBox "Mars"
End If
If mois = 4 Then
MsgBox "Avril"
End If
If mois = 5 Then
MsgBox "Mai"
End If
If mois = 6 Then
MsgBox "Juin"
End If
If mois = 7 Then
MsgBox "Juillet"
End If
If mois = 8 Then
MsgBox "Août"
End If
If mois = 9 Then
MsgBox "Septembre"
End If
If mois = 10 Then
MsgBox "Octobre"
End If
If mois = 11 Then
MsgBox "Novembre"
End If
If mois = 12 Then
MsgBox "Décembre"
End If
End If
' 在主子里面
mois_de_date
If month(Date_de_survenance) = mois Then
Date_to_search = Date_de_survenance
MsgBox "Correct"
End If