Forum Discussion
Anonymous
8 years agoNot applicable
split by delimiter
hii,
I need output as if i select projectid 1 then SBU name as DT,IES like on card how i can ???
i.e SBU Name : DT/IES
Hi Anonymous
Just Replace ISFILTERED with ISCROSSFILTERED in the code provided by v-chuncz-msft
Measure = "SBU: " & IF ( ISCROSSFILTERED ( Table1[ProjectID] ), CONCATENATEX ( VALUES ( Table1[SBU Name] ), Table1[SBU Name], "," ) )
8 Replies
- Zubair_MuhammadCommunity Champion
Hi Anonymous
Try this MEASURE and then put it in a CARD visual
Measure = CONCATENATEX ( VALUES ( TableName[SBU Name] ), TableName[SBU Name], "," )
- AnonymousNot applicable
Thank you..
can you advice me when nothing is selected then only SBU : like this
i.e noting is selected then SBU:
when selected then SBU :dt,ies- v-chuncz-msftCommunity Support
Anonymous,
You may use measure below.
Measure = "SBU: " & IF ( ISFILTERED ( Table1[ProjectID] ), CONCATENATEX ( VALUES ( Table1[SBU Name] ), Table1[SBU Name], "," ) )