Forum Discussion
i820017
4 years agoResolver II
Date to YearMonth Column
I am trying to create a column that takes a date in mm/dd/yyyy and turns it into YearMonth. (The name of the column that I am working with is 'Procedure Request Form'[Date Request Submitted]) For...
- 4 years ago
oh....!!! This should work now. 🙂
Column = IF(ISBLANK('Table'[Column1]),BLANK(),FORMAT(DATEVALUE('Table'[Column1]),"YYYYMM"))
tackytechtom
4 years agoMost Valuable Professional
Hi i820017 ,
How about this:
YearMonth = FORMAT ( Table[Date], "YYYYMM" )
Does this solve your issue? 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/