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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.