I have an identified date within a fact table and I need to create a new table that's formatted "MMM-YY" (JAN-01)
and sorted in month order.
I entered the data manually from a Excel Spreadsheet with dates ranging from Jan-15 to Dec-30 and sorted by an id num but ideally I want it to update monthly based on a identified date column within the fact table in BI. So for now id want dates upto Sep-19 which would update when the identified dates are refreshed within the fact table.
For now I've used the below to format the column which was inserted manually however id like to change the monthref.date to be based off of an identified date within my fact table.
ID Date = FORMAT('Month Ref'[Date],"MMM-YY")
Id want my date within the fact table to be lookedup/refrenced in another table formatted "mmm-yy" and to be in order of calendar month.
I can use
CALENDAR(MIN(FactEfficiencies[identified_date].[Date]) AND MAX(FactEfficiencies[identified_date].[Date]))
to get every date then format but it will bring back the month multiple times when I just need one.