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
vashu-123
Frequent Visitor

Need help in DAX

Hello All. Below I am attaching a screenshot of the slicer of my report:

vashu123_2-1671094216981.png

 

In this Slicer, I have selected "closed", "resolved " and "cancelled". so, whenever i select these three options(closed,resolved and cancelled) my below table which contains a column called "Due_Date" must be blank entirely. 

vashu123_1-1671094088733.png

"Due_Date" column is coming from one table "RL" and the above slicer data is coming from another table called as "Status" and the column name is "state". How can i write dax on this such scenario, when I select "closed',"resolved" and "cancelled" the "due_Date" column must be blank entirely? Please help me on this. Any help would be much appreciated. Thanks in Advance!

1 ACCEPTED SOLUTION
v-jialluo-msft
Community Support
Community Support

Hi  @vashu-123 ,

 

Please follow these steps:
(1) Create a new column measure

FLAG = 
IF (
    ISFILTERED ( 'Status'[state] ),
    IF (
        "Closed"
            IN VALUES ( 'Status'[state] )
                && "Cancelled"
                    IN VALUES ( 'Status'[state] )
                        && "Resolved" IN VALUES ( 'Status'[state] ),
        0,
        1
    ),
    1
)


(2)Add filtering

vjialluomsft_0-1671156865462.png

 

(3)Final output

vjialluomsft_1-1671156884963.pngvjialluomsft_2-1671156894009.png

 

 

Best Regards,
Gallen Luo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-jialluo-msft
Community Support
Community Support

Hi  @vashu-123 ,

 

Please follow these steps:
(1) Create a new column measure

FLAG = 
IF (
    ISFILTERED ( 'Status'[state] ),
    IF (
        "Closed"
            IN VALUES ( 'Status'[state] )
                && "Cancelled"
                    IN VALUES ( 'Status'[state] )
                        && "Resolved" IN VALUES ( 'Status'[state] ),
        0,
        1
    ),
    1
)


(2)Add filtering

vjialluomsft_0-1671156865462.png

 

(3)Final output

vjialluomsft_1-1671156884963.pngvjialluomsft_2-1671156894009.png

 

 

Best Regards,
Gallen Luo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-jialluo-msft Thank you so much. It worked in my report.

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.

Top Solution Authors