Determine month from a date field

Hello,
I have a question, I have a cell with a date type value dd / mm / yyyy
which I capture, to send an email, but I would like to know how I identify the month of that date, that is:

You have 12/22/2020 I would like to determine that the month of that date is December

Hello,

you can use the format date and set “MMMM” to have the month full name , for example
DateTime.Now.ToString(“MMMM”);
This will print December.

1 Like

If anyone is wondering how to convert the string to date time and get the Month name:

image

image

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.