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
Jason2500
Helper I
Helper I

How to use IF condition for the slicers?

Hi

 

I have two tables, one is the date

 

Jason2500_0-1617570542271.png

I have created this date column using calendar auto function

 

Another table called user 

 

Jason2500_1-1617570760770.png

There is no a relationship between these two tables. 

I have created a slicer using my date column

 

Jason2500_2-1617570793616.png

 

I want to check whether the user table date available in the selected slicer date using the If condition. For example, in the User table Player A has a date of January 1 2021. I want to check whether Jan 1 2021 lies between the selected slicer date. If it is available I need to print 1 else 0. 

 

I want to create a DAX measure to check this condition. Not sure how to do this. Tried other posts but no success. Please advise. 

 

 

 

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi, @Jason2500 

Please try to write the below measure.

The link to the sample pbix file is down below.

 

Picture4.png

 

Check measure =
IF (
SELECTEDVALUE ( Users[Date] ) >= MIN ( Dates[Date] )
&& SELECTEDVALUE ( Users[Date] ) <= MAX ( Dates[Date] ),
1,
0
)

 

https://www.dropbox.com/s/2vc7txlkggjn22q/jason2500.pbix?dl=0 

 

Hi, My name is Jihwan Kim.

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

3 REPLIES 3
Jihwan_Kim
Super User
Super User

Hi, @Jason2500 

Please try to write the below measure.

The link to the sample pbix file is down below.

 

Picture4.png

 

Check measure =
IF (
SELECTEDVALUE ( Users[Date] ) >= MIN ( Dates[Date] )
&& SELECTEDVALUE ( Users[Date] ) <= MAX ( Dates[Date] ),
1,
0
)

 

https://www.dropbox.com/s/2vc7txlkggjn22q/jason2500.pbix?dl=0 

 

Hi, My name is Jihwan Kim.

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


selimovd
Super User
Super User

Hey @Jason2500 ,

 

you can tell Power BI to treat the date column from the date table as the date column from the user table.

Try the following measure and add it in the visualization to a table with the Player column from the user table:

 

Amount Rows =
CALCULATE(
    COUNTROWS( user ),
    TREATAS(
        VALUES( 'date'[Date] ),
        user[Date]
    )
)

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 

@selimovd  Thanks for your help.  I tried the above measures, but it is not checking the condition. I need to see whether the user date is available between the slicer and show 1 else 0? Can you please advise?

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.