Forum Discussion

Guyakobov's avatar
Guyakobov
Icon for Helper II rankHelper II
5 years ago

Column by chosen dates

Hi, 

 

 I want to create a table based on the last 2 dates from the selected date filter.


If the filter is for the whole of September, then the table will show only the last 2 days 30.9 and 29.9.

Note that the values ​​in the table are yes according to the columns so that column 29.9 shows a sum of values ​​from 1.9-29.9
And a column of the 30.9 shows values ​​between 1-30.9

 

in the picture below you can see what I did in PBI and what I want it to be like the excel. 

 

Thanks for the help! 

 

 

 

 

4 Replies

  • Guyakobov , Try a measure like


    measure =
    var _max =maxx(allselected(Date), Date[Date])
    return
    calculate([measure], filter(Date, date[date] >= _max-1, date[date]<=_max))

     

    or

     

    measure =
    var _max =maxx(allselected(Date), Date[Date])
    return
    sumx(values(date[date]),if(max(date[date]) >= _max-1, max(date[date])<=_max , [meausre], blank()))

    • Guyakobov's avatar
      Guyakobov
      Icon for Helper II rankHelper II

      HI, 

       

      thank you for your reply! 

       

      I tried it, but I can not use measures as in column in the matrix table. 

  • can someone help, please? 😞

     

     I need a column with the name of the last date that I choose, the value needs to be the sum of measure from the beginning of the period that was chosen until the last date.