Forum Discussion

Jyo27's avatar
Jyo27
Helper II
3 years ago

Tooltip

Hi Everyone ,

I have a requirement regarding clustered chart sales by week by category. 

 

x-axis = category

y-axis = sales by current week ,previous week 

 

Based on the week selection when I hover on the bar for current week it should show "Week 12" and for previous week "Week 11". How can I resolve this issue?

 

1 Reply

  • Jyo27 , that you can not do with this week's and last week's measure, your will need two date tables one joined with your table and one not joined

     

    Week Rank = RANKX(all('Date'),'Date'[Week Start date],,ASC,Dense)
    OR
    Week Rank RANKX(all('Date'),'Date'[Year Week],,ASC,Dense) //YYYYWW format\

     

    //Date1 is independent Date table, Date is joined with Table
    new measure =
    var _max = maxx(allselected(Date1),Date1[week Rank])
    var _min = _max -1
    return
    calculate( sum(Table[Value]), filter('Date', 'Date'[week Rank] >=_min && 'Date'[week Rank] <=_max))

     

     

    Need of an Independent Date Table:https://www.youtube.com/watch?v=44fGGmg9fHI