I have a date (yyyy-mm-dd) in a String Variable. I need to get the month in text (“mmm”) and store it in a new String Variable. How can I solve this in an easy way?
Make sure the date value is in a DateTime variable. With that you can use DateTimeVariable.ToString(“MMM”).
Make sure the ‘M’ is a capital. Little ‘m’ refers to minutes in DateTime.
2 Likes
@Thom_Co. So easy… Thank you!!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.