Forum Discussion
Dynamic Header Date value in matrix table
- Anonymous4 years ago
Hi Krishnan_47
You can create a measure to realize your need .
(1)Create a calculated table to return the date column from original data table, and add a slicer with the column 'Table 2'[Date]
Table 2 = SELECTCOLUMNS('Table',"Date",'Table'[Date])(2)Create a measure to return current month and previous month data when you select date in slicer .
select month value = CALCULATE(SELECTEDVALUE('Table'[Value]),FILTER('Table','Table'[Date]<=SELECTEDVALUE('Table 2'[Date]) && 'Table'[Date]>=DATEADD('Table 2'[Date],-1,MONTH)))(3)Add the measure to values in Matrix visual .
Final result is as shown :
I have attached my pbix file , you can refer to it.
Best Regard
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Krishnan_47
I tried the extra scene you mentioned, but unfortunately, it can't be implemented in Matrix at the moment .
I calculated the current value and previous value and then subtracted , but the value display in each row . That means you cannot display the month dynamic with the month slicer .
Moreover, Matrix does not support dynamic hidden null values, and can only be manually dragged. This does not meet the dynamic display you require. So it is impossible for you to add more dynamic measures .
Best Regard
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.