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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
ybatistamayo
Helper III
Helper III

comment on a table according to the filters

I want to comment on a table according to the filters that are selected.

For example I have a table of sales by store and date.

and I would like something like "Store sales ___ for the month___"

 

1 ACCEPTED SOLUTION

You will have to change the table names to match yours but something like this will work.

 

Comment = 
VAR _Months = 
    IF ( 
        ISFILTERED ( 'Date'[Month] ),
        CONCATENATEX( VALUES('Date'[Month]) , 'Date'[Month], ", " ),
        "ALL"
    )
VAR _Stores = 
    IF ( 
        ISFILTERED ( Store[Store Name] ),
        CONCATENATEX( VALUES(Store[Store Name]) , Store[Store Name], ", " ),
        "ALL"
    )
RETURN "Store sales " & _Stores & " for the month " & _Months

Comment.jpg

 

View solution in original post

3 REPLIES 3
jdbuchanan71
Super User
Super User

@ybatistamayo 

If the user selects more that one store or month what do you want the comment to say?

If you select more than one store or month, also comment on the values ​​according to the filters. Thank you

You will have to change the table names to match yours but something like this will work.

 

Comment = 
VAR _Months = 
    IF ( 
        ISFILTERED ( 'Date'[Month] ),
        CONCATENATEX( VALUES('Date'[Month]) , 'Date'[Month], ", " ),
        "ALL"
    )
VAR _Stores = 
    IF ( 
        ISFILTERED ( Store[Store Name] ),
        CONCATENATEX( VALUES(Store[Store Name]) , Store[Store Name], ", " ),
        "ALL"
    )
RETURN "Store sales " & _Stores & " for the month " & _Months

Comment.jpg

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.