Forum Discussion
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
- amitchandak
Super User
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
Helper II
HI,
thank you for your reply!
I tried it, but I can not use measures as in column in the matrix table.
- Guyakobov
Helper II
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.
- v-easonf-msft
Community Support
Hi, Guyakobov
As of now, it is difficult to create dynamic column headers affected by slicers in a Matrix table.
You can check if this related post can help.
https://community.powerbi.com/t5/Desktop/Dynamic-column-header-in-Matrix/td-p/954608
Best Regards,
Community Support Team _ Eason