How to get current month and year as Jul 19

to get current month and year as Jul 19
please help me out find solution

image
This will output the abbreviated month and year.

@brindhaS

Try this:

Month - Datetime.Now.Tostring(“MMMM”)

Year - Datetime.Now.Tostring(“yyyy”)

3 Likes

@lakshman this will output “July 2019” instead of “Jul 19”

thank you

1 Like

@DanielMitchell

I thought she asked for full month. So, I provided like that.

For this: Datetime.Now.Tostring(“MMM”)

5 Likes

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