Date change issue

I have a date column, but I want to create a virtual column for year and month like

01/01/2020 to 2020-January

0 3 107
3 REPLIES 3

Hello @Anchor_Appadmin, try this formula for your virtual column:

CONCATENATE(TEXT([Date_column),"YYYY"),"-",TEXT([Date_column],"MMMM"))

Or maybe even

TEXT([Date Column], โ€œYYYY-MMMMโ€)

TEXT() is indeed powerful.

Steve
Platinum 4
Platinum 4

For reference:

Top Labels in this Space