Forum Discussion
Stop Matrix Autosizing
- 7 years ago
It's resizing since some of the column values no longer appears in the selection. To my knowledge there is no way to make the matrix dynamically adapt in size.
What you could do is replace the column dimension with ALOT of measures.1-1 = Calculate( [Expression], DimensionValue = "1-1" )
1Link = Calculate( [Expression], DimensionValue = "1Link" )
etc.
This will make it so that all the columns will stay no matter the selection and the matrix should always remain the same size. It's tedious and a quite bad solution but it will solve your issue.
It's resizing since some of the column values no longer appears in the selection. To my knowledge there is no way to make the matrix dynamically adapt in size.
What you could do is replace the column dimension with ALOT of measures.
1-1 = Calculate( [Expression], DimensionValue = "1-1" )
1Link = Calculate( [Expression], DimensionValue = "1Link" )
etc.
This will make it so that all the columns will stay no matter the selection and the matrix should always remain the same size. It's tedious and a quite bad solution but it will solve your issue.
Thanks for the reply i appreciate it. I will give that a go.