Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

default Slicer value

Hi guy's   i have date Slicer in UAT level, here i selected manually max value. after that if i published into Prod level i want selected automatically max date value on slicer.    regrads,...
  • amitchandak's avatar
    6 years ago

    @Navin512 , Create a column like this in the date table and use it by default (Today or Last Date

    Tipo de fecha: SWITCH(TRUE(),'Date'[Date]-TODAY(),"Today"
    ,'Date'[Fecha]-TODAY()-1,"Yesterday"
    ,'Date'[Fecha]&"")

    Tipo de fecha: SWITCH(TRUE(),'Date'[Date]-maxx(sales,sales[date]),"Last Date"
    ,'Date'[Fecha]&"")

  • Greg_Deckler's avatar
    6 years ago

    Anonymous So, unfortunately this is a very common and yet kind of unsolved problem. There are work-a-rounds however. One is to use the Relative Date Slicer. Another is to create a column like this:

    DateSlicer Column = 
      VAR __Max = MAX('Table'[Date])
    RETURN
      IF([Date]=__Max,"Latest",[Date]&"")

    Then you can set your slicer to Latest.