Forum Discussion
Anonymous
3 years agoNot applicable
Dynamic display names of parameter fields
I've slicer period: data like Month-year I've created a parameter field Param = { ("NBI Adjusted Calendar 2 " , NAMEOF('Fact Performance Indicators'[NBI Adjusted]), 0,"NBI Adjusted"...
- Anonymous3 years ago
Hi Anonymous ,
You can refer to the tutorial on creating field parameters:
Normally, our formula has the following format:
Parameter = { ("Customer", NAMEOF('Customer'[Customer]), 0), ("Category", NAMEOF('Product'[Category]), 1), ("Color", NAMEOF('Product'[Color]), 2), ("Product", NAMEOF('Product'[Product]), 3) }It is often used to implement dynamic field filtering.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
3 years agoNot applicable
Hi Anonymous ,
You can refer to the tutorial on creating field parameters:
Normally, our formula has the following format:
Parameter = {
("Customer", NAMEOF('Customer'[Customer]), 0),
("Category", NAMEOF('Product'[Category]), 1),
("Color", NAMEOF('Product'[Color]), 2),
("Product", NAMEOF('Product'[Product]), 3)
}
It is often used to implement dynamic field filtering.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.