Month+String+Year(1 year ahead) calendar window

How to generate the highlighted value dynamically to click it on the calendar window

Current month + “FY” + The year always one 1 year ahead from current year

Hi,

How about the following expression?

Now.ToString("MMM")+" FY "+Now.AddYears(1).ToString("yy")

image

OR
The following will also work.

Now.AddYears(1).ToString("MMM \F\Y yy")

Regards,

2 Likes

Hi @Sathish_Kumar_S

Another approach

Today.AddYears(1).ToString("MMM 'FY' yy")

Regards!

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