Forum Discussion
Snagalapur
1 year agoHelper IV
Text based on Field parameter selection
Hi All, Please suggest measure to udpate text based on Field parameter selction. EX, below Field Parameter: Seg/BU/Sub BU/Product = { ("Segment", NAMEOF('Table'[pl1_descr]), 0), (...
- 1 year ago
Snagalapur , Try using
DAX
PlaceholderText =
VAR selectedValue = SELECTEDVALUE('Seg/BU/Sub BU/Product'[Seg/BU/Sub BU/Product Fields])
RETURN
IF(
ISBLANK(selectedValue),
"No Selection",
SWITCH(
selectedValue,
0, "Segment",
1, "BU",
2, "Sub BU",
3, "Product Grp",
4, "Product",
"Invalid Selection"
)
)
v-priyankata
1 year agoCommunity Support
Hi Snagalapur
May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.
Thank you.