Forum Discussion
Snagalapur
Helper IV
1 year agoText 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"
)
)
Anonymous
1 year agoNot applicable
Hi Snagalapur
I hope this information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, please Accept it as a solution and give it a 'Kudos' so others can find it easily.
Thank you.