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
- 8 years ago
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], "," ) )
Zubair_Muhammad
8 years agoCommunity Champion
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], "," )
)
Anonymous
8 years agoNot applicable
thanks :smileyhappy:
- Zubair_Muhammad8 years agoCommunity ChampionIt works now?
- Anonymous8 years agoNot applicable
yes its works....