Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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
Solved! Go to Solution.
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], "," ) )
Hi @Anonymous
Try this MEASURE and then put it in a CARD visual
Measure = CONCATENATEX ( VALUES ( TableName[SBU Name] ), TableName[SBU Name], "," )
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
@Anonymous,
You may use measure below.
Measure = "SBU: " & IF ( ISFILTERED ( Table1[ProjectID] ), CONCATENATEX ( VALUES ( Table1[SBU Name] ), Table1[SBU Name], "," ) )
But i have multiple filters......
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], "," ) )
thanks
yes its works....
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
100 | |
65 | |
44 | |
36 | |
36 |