Forum Discussion
Anonymous
5 years agoNot applicable
To create a shift roaster in Power BI
Hi All, I have a requirement to create a shift roaster in power BI, below is the format given in Weeks. I have to display Weeks along with timing PST and highlight the shift details during this tim...
HarishKM
Super User
5 years agoAnonymous you can create a custom calender .
Calender = ADDCOLUMNS( CALENDAR(MIN(data[Order Date]),MAX(data[Order Date])),
"Year",YEAR([Date])
, "Monthnum",MONTH([Date]),
"Month Name ", FORMAT([Date],"mmmm")
, "Day", DAY([Date]),
"Day Name", FORMAT([Date],"dddd"),
Then drag the required feild in matrix for result like this
Then drag the required feild in matrix for result like this
Anonymous
5 years agoNot applicable
Thanks for the reply but this data is coming from a Strored Procedure so I cannot modify it.
Can you tell me how well can I represent a shift roaster in Power BI which shows the associates working in which shift weekly.