Hello I have a parameter called {?the_date} and I use it to specify a month's worth of data. How can I extract the month of the range (into a variable named the_month so I can use it in the bellow switch statement:
Switch
(
the_month = 1, "January",
the_month = 2, "Februrary",
the_month = 3, "March",
the_month = 4, "April",
the_month = 5, "May",
the_month = 6, "June",
the_month = 7, "July",
the_month = 8, "August",
the_month = 9, "September",
the_month = 10, "October",
the_month = 11, "November",
the_month = 12, "December",
True, "null"
) //end switch
Thank you in advance for your help.
Toxodont
Switch
(
the_month = 1, "January",
the_month = 2, "Februrary",
the_month = 3, "March",
the_month = 4, "April",
the_month = 5, "May",
the_month = 6, "June",
the_month = 7, "July",
the_month = 8, "August",
the_month = 9, "September",
the_month = 10, "October",
the_month = 11, "November",
the_month = 12, "December",
True, "null"
) //end switch
Thank you in advance for your help.
Toxodont