D
Daniel
Hello,
Suppose I want to write the following which are strings
If reportingMonth > statusMonth Then
....
Since they are strings, the comparaison is not good. However if I add
Enum lesMois
janvier = 1
février = 2
mars = 3
avril = 4
mai = 5
juin = 6
juillet = 7
août = 8
septembre = 9
octobre = 10
novembre = 11
décembre = 12
End Enum
can I do that comparaison and how do I use it so that it refers to the
numerical equivalent?
Thank you for your suggestions.
Daniel
Suppose I want to write the following which are strings
If reportingMonth > statusMonth Then
....
Since they are strings, the comparaison is not good. However if I add
Enum lesMois
janvier = 1
février = 2
mars = 3
avril = 4
mai = 5
juin = 6
juillet = 7
août = 8
septembre = 9
octobre = 10
novembre = 11
décembre = 12
End Enum
can I do that comparaison and how do I use it so that it refers to the
numerical equivalent?
Thank you for your suggestions.
Daniel