Forum Discussion
Anonymous
4 years agoNot applicable
Week Number parameters
Hi, I'm working on a weekly production plan, I created a date table with the week numbers (Formula: Weeknum) My working week starts on Sunday and ends on Saturday. There are weeks that are s...
- Anonymous4 years ago
Thank you tamerj1 for your reponse.
just one detail ,how I can convert "Slicer Month" to a Date Format, now it is a Text ?
- 4 years ago
Hi Anonymous
Create another column (Slicer Month Number) and then use the option sort by column to sort the Slicer Month by the Slicer Month NumberSlicer Month = VAR CurrentMonth = 'Date'[Month Number] VAR CurrentYearWeekTable = FILTER ( CALCULATETABLE ( 'Date', ALLEXCEPT ( 'Date', 'Date'[Year], 'Date'[Week Number] ) ), 'Date'[Month Number] = CurrentMonth ) VAR MaxWeekday = MAXX ( CurrentYearWeekTable, WEEKDAY ( 'Date'[Date], 1 ) ) VAR MonthNumber = IF ( MaxWeekday < 3, CurrentMonth + 1, CurrentMonth ) RETURN MonthNumber
Anonymous
4 years agoNot applicable
Hi tamerj1 ,I mean to put slicer in descending order in the visual (report) like: January, February, March.....SO I must put the format as a dat
tamerj1
Community Champion
4 years agoHi Anonymous
Create another column (Slicer Month Number) and then use the option sort by column to sort the Slicer Month by the Slicer Month Number
Slicer Month =
VAR CurrentMonth = 'Date'[Month Number]
VAR CurrentYearWeekTable =
FILTER (
CALCULATETABLE ( 'Date', ALLEXCEPT ( 'Date', 'Date'[Year], 'Date'[Week Number] ) ),
'Date'[Month Number] = CurrentMonth
)
VAR MaxWeekday =
MAXX ( CurrentYearWeekTable, WEEKDAY ( 'Date'[Date], 1 ) )
VAR MonthNumber =
IF (
MaxWeekday < 3,
CurrentMonth + 1,
CurrentMonth
)
RETURN
MonthNumber