Create variable month

I need to get the month. How can I extract the current month and leave it in a variable?

thanks

Now.ToString(“MMMM”)

1 Like

Another option worth considering is System.DateTime.Today.Month

2 Likes

Thanks!