Forum Discussion
joshua1990
4 years agoPost Prodigy
Field Name in Dropdown
I have a dropdown by using a slicer with year, month, and week fields. Is there any way to remove the names of the selected fields (Year, Month, and Week) in this visual?
- Anonymous4 years ago
Hi joshua1990 ,
If you continue to use the current column settings, I'm afraid that the display of these fields(Year, Month and Week) on the slicer dropdown list can't be changed. You can create a calculated column below and apply it to the slicer instead of the Year, Month and Week fields.
SlicerDate = YEAR ( 'Date'[Date] ) & " " & FORMAT ( 'Date'[Date], "MMM" ) & " " & WEEKNUM ( 'Date'[Date], 1 )Best Regards
Anonymous
4 years agoNot applicable
Hi joshua1990 ,
If you continue to use the current column settings, I'm afraid that the display of these fields(Year, Month and Week) on the slicer dropdown list can't be changed. You can create a calculated column below and apply it to the slicer instead of the Year, Month and Week fields.
SlicerDate =
YEAR ( 'Date'[Date] ) & " "
& FORMAT ( 'Date'[Date], "MMM" ) & " "
& WEEKNUM ( 'Date'[Date], 1 )
Best Regards