1

I'm trying to use the Microsoft month view control in Excel. How do I check if the user has picked a particular date using if statements?

Community
  • 1
  • 1
MuziP
  • 11
  • 1
  • 2

1 Answers1

1

I would recommend not to use monthview control. You may use this alternative

If you still want to use the monthview control then see this

The MonthView1 controls return a string value which can be accessed by MonthView1.Value

And once you have the string value, you can convert that to a date value by using CDate()

For example

CDate(MonthView1.Value)

Now it is easy for you to use an if condition to do a direct date comparison.

Community
  • 1
  • 1
Siddharth Rout
  • 147,039
  • 17
  • 206
  • 250