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 wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.
Thank you.