Forum Discussion
Anonymous
7 years agoNot applicable
Return current month name in a calculated column
Hi I have a table following Date 04-04-2019 01-01-2019 02-02-2019 if Date coumn having current month then return a current monthe name(Apr) Expect as...
- 7 years ago
hi, Anonymous
Just use this simple formula to add a column
Column = IF(YEAR('Table'[Date])=YEAR(TODAY())&&MONTH('Table'[Date])=MONTH(TODAY()),FORMAT ( 'Table'[Date], "mmm" ) )Result:
Best Regards,
Lin
v-lili6-msft
Community Support
7 years agohi, Anonymous
Just use this simple formula to add a column
Column = IF(YEAR('Table'[Date])=YEAR(TODAY())&&MONTH('Table'[Date])=MONTH(TODAY()),FORMAT ( 'Table'[Date], "mmm" ) )
Result:
Best Regards,
Lin