Forum Discussion
Custom Federal Fiscal Year
Hi Everyone - I was just wondering if it possible to create a custom Federal Fiscal Year (Years and Months). My FFY2018 start from 10/1/2017 and finish 9/30/2018. So I was wondering if I can create column with Year-Month format. Thank you in advance.
hi, Anonymous
You could use CALENDAR Function to create a custom date table.
and for Year-Month format, you could try this formula
Year Month Number = YEAR ( 'Date'[Date] ) * 100 + MONTH ( 'Date'[Date] )
or
Year Month = FORMAT ( 'Date'[Date], "mmmm" ) & " " & YEAR ( 'Date'[Date] )
This document is for your reference
https://docs.microsoft.com/en-us/dax/custom-date-and-time-formats-for-the-format-function
Best Regards,
Lin
2 Replies
- v-lili6-msftCommunity Support
hi, Anonymous
You could use CALENDAR Function to create a custom date table.
and for Year-Month format, you could try this formula
Year Month Number = YEAR ( 'Date'[Date] ) * 100 + MONTH ( 'Date'[Date] )
or
Year Month = FORMAT ( 'Date'[Date], "mmmm" ) & " " & YEAR ( 'Date'[Date] )
This document is for your reference
https://docs.microsoft.com/en-us/dax/custom-date-and-time-formats-for-the-format-function
Best Regards,
Lin
- AnonymousNot applicable
Thank you :smileyhappy: