Forum Discussion
Flexible Column Name - Field Parameters
- 2 years ago
Hello,
Unfortunately, you are not able to dynamically change the name of a column within a table/matrix visual. What you can do however, is have a dynamic title to your visual. You can then do something like:
VizTitle = CONCATENATE("Model Based on ", SELECTEDVALUE(Sheet1[Label]))In projects where I had to create something similar, I called the column "Modeled Value", to indicate that this is a value that is dynamic depending on what the end-user selects
Hello,
Unfortunately, you are not able to dynamically change the name of a column within a table/matrix visual. What you can do however, is have a dynamic title to your visual. You can then do something like:
VizTitle =
CONCATENATE("Model Based on ", SELECTEDVALUE(Sheet1[Label]))
In projects where I had to create something similar, I called the column "Modeled Value", to indicate that this is a value that is dynamic depending on what the end-user selects
- GabinAM2 years agoFrequent Visitor
Hi ExcelMonke
Thanks for your feedback!