Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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!
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.
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
@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()))
HI,
thank you for your reply!
I tried it, but I can not use measures as in column in the matrix table.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 132 | |
| 88 | |
| 82 | |
| 68 | |
| 64 |