Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
DavidMG82
Helper I
Helper I

Slicer Selected Values Label to text

Hi everyone, im trying to replicate the summary of selections on my dropdown slicer, which currently holds three fields: FY, FQ and M.

So depending on the values I am selecting the slicer shows a summary like the following:

 

Option 1: 2023 (FY) + Q2 (FQ) + 01 (M)

Option 2: 2023 (FY) + Q2 (FQ)

Option 3: 2023 (FY)

 

How can I replicate this with a measure to present as text with a Scorecard?, thanks ahead for your help!

2 ACCEPTED SOLUTIONS
lbendlin
Super User
Super User

use ISFILTERED, HASONEFILTER, FILTERS and VALUES to figure out if the columns are filtered. Then concatenate the results accordingly.

 

Note that there is a difference between "nothing filtered yet"  and "nothing filtered as result of the filters being cleared". You could call that a bug, or a feature.

View solution in original post

Many thanks, I was using the method below but I was sure there is probably a better way to do it. I will follow your recommendations.

 

dateLabel = 
Var year_ = SELECTEDVALUE(cm[ReportFY],BLANK())
Var quarter_ = SELECTEDVALUE(cm[ReportQ],BLANK())
Var month_ = SELECTEDVALUE(cm[monthLabelShort],BLANK())

return
 SWITCH(
    TRUE(),
        quarter_="","Selected Date: " & CONCATENATE(year_," (FY) "),
        month_="","Selected Date: " & CONCATENATE(CONCATENATE(year_," (FY) + "),CONCATENATE(quarter_," (FQ)")),
        "Selected Date: " & CONCATENATE(CONCATENATE(CONCATENATE(year_," (FY) + "),CONCATENATE(quarter_," (FQ) + ")),CONCATENATE(month_," (M)")
    ))

View solution in original post

2 REPLIES 2
lbendlin
Super User
Super User

use ISFILTERED, HASONEFILTER, FILTERS and VALUES to figure out if the columns are filtered. Then concatenate the results accordingly.

 

Note that there is a difference between "nothing filtered yet"  and "nothing filtered as result of the filters being cleared". You could call that a bug, or a feature.

Many thanks, I was using the method below but I was sure there is probably a better way to do it. I will follow your recommendations.

 

dateLabel = 
Var year_ = SELECTEDVALUE(cm[ReportFY],BLANK())
Var quarter_ = SELECTEDVALUE(cm[ReportQ],BLANK())
Var month_ = SELECTEDVALUE(cm[monthLabelShort],BLANK())

return
 SWITCH(
    TRUE(),
        quarter_="","Selected Date: " & CONCATENATE(year_," (FY) "),
        month_="","Selected Date: " & CONCATENATE(CONCATENATE(year_," (FY) + "),CONCATENATE(quarter_," (FQ)")),
        "Selected Date: " & CONCATENATE(CONCATENATE(CONCATENATE(year_," (FY) + "),CONCATENATE(quarter_," (FQ) + ")),CONCATENATE(month_," (M)")
    ))

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.