Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Custom Date Table - period description

hi, 

I work in the rail industry.

We have for example:

Period 1 = 01/04/2021 to 01/05/2021

Period 2 = 03/05/2021 to 29/05/2021

 

  • I have a basic date table (below is my current date table code)
  • How can i add Period 1 (Decscription) to incorporate this date periods only?

 

 

Date =
ADDCOLUMNS (
FILTER (
CALENDARAUTO( ),
AND ( YEAR ( [Date] ) >= 2021, YEAR ( [Date] ) <= 2026 )
),
"Calendar Year", "CY " & YEAR ( [Date] ),
"Month Name", FORMAT ( [Date], "mmmm" ),
"Month Number", MONTH ( [Date] ),
"Weekday", FORMAT ( [Date], "dddd" ),
"Weekday number", WEEKDAY( [Date] ),
"Quarter", "Q" & TRUNC ( ( MONTH ( [Date] ) - 1 ) / 3 ) + 1
)

 

 

Thank you

3 REPLIES 3
amitchandak
Super User
Super User

@Anonymous , do you have any table where you have these periods if yes you can add additional columns based on that

 

Start Date  = minx(filter(period, peiord[Start Date] <= Date[Date] && peiord[end Date] >= Date[Date] ), peiord[Start Date] )

 

same way

 

 

end Date  = minx(filter(period, peiord[Start Date] <= Date[Date] && peiord[end Date] >= Date[Date] ), peiord[end  Date] )

Anonymous
Not applicable

Hi amitchandak
Where in my code, would i insert the code you suggested?

Thanks

Jerry

Anonymous
Not applicable

I dont have any other table.

This is a new contract.

What do you suggest?

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors