Forum Discussion
po
Post Prodigy
7 years agoBreadcrumb with slicer selection
Hi, What is best way to capture slicer selections in power bi. Have seen IF(ISFILTERED('Suppliers Details'[CompanyName]), SELECTEDVALUE('Suppliers Details'[CompanyName], "Multiple Selec...
- 7 years ago
Hi po,
What's the expected result? There aren't many tricks. If you'd like to see the details, you can try the measure below.
Measure = IF ( ISFILTERED ( Table1[YearWks] ), CONCATENATEX ( VALUES ( Table1[YearWks] ), [YearWks], "-", 0 ) )Best Regards,
Dale
v-jiascu-msft
Microsoft Employee
7 years agoHi po,
What's the expected result? There aren't many tricks. If you'd like to see the details, you can try the measure below.
Measure =
IF (
ISFILTERED ( Table1[YearWks] ),
CONCATENATEX ( VALUES ( Table1[YearWks] ), [YearWks], "-", 0 )
)
Best Regards,
Dale
diskovered
Helper III
7 years agoWhat if you have multiple slicers, same table for example, Year, Month, Quarter, Day, is it possible to concat all? What's the syntax?
Measure =
IF (
ISFILTERED ( Table1[YearWks] ),
CONCATENATEX ( VALUES ( Table1[YearWks] ), [YearWks], "-", 0 )
)