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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Gjakova
Post Patron
Post Patron

How to: if selected date is before/after the displayed date, then...

Hi there, I have the following issue:

 

I have a list of projects and I want to see if a project is closed or not.

So if I select the date: 20 January 2021 on my date slicer, I want to see the following result:

ProjectEnd DateClosed or Not Closed
A5 January 2020Closed
B18 January 2021Closed
C1 February 2021Not Closed
D13 March 2021Not Closed

 

And if I select the date 4 July 2021, I want to see the following result:

ProjectEnd DateClosed or Not Closed
A5 January 2020Closed
B18 January 2021Closed
C1 February 2021Closed
D13 March 2021Closed


I tried the following measure but it does not work good:

ProjectStatus =
VAR SelectedDate = SELECTEDVALUE(Calender[Date])
VAR ClosedOrNot=
       IF(MAX(Projects[end_date]) > SelectedDate, "Not Closed", "Closed")
RETURN
       ClosedOrNot
 
Does someone know a solution?
1 ACCEPTED SOLUTION
pranit828
Community Champion
Community Champion

HI @Gjakova 

try the below code 

ProjectStatus =
VAR SelectedDate = SELECTEDVALUE(Calender[Date])
VAR ClosedOrNot=
       IF(CALCULATE(MAX(Projects[end_date]), ALLEXCEPT(Projects,Projects[Project])) > SelectedDate, "Niet Closed", "Closed")
RETURN
       ClosedOrNot




PBI_SuperUser_Rank@1x.png


Hope it resolves your issue? 
Did I answer your question? Mark my post as a solution!

Appreciate your Kudos, Press the thumbs up button!!
Linkedin Profile

View solution in original post

2 REPLIES 2
pranit828
Community Champion
Community Champion

HI @Gjakova 

try the below code 

ProjectStatus =
VAR SelectedDate = SELECTEDVALUE(Calender[Date])
VAR ClosedOrNot=
       IF(CALCULATE(MAX(Projects[end_date]), ALLEXCEPT(Projects,Projects[Project])) > SelectedDate, "Niet Closed", "Closed")
RETURN
       ClosedOrNot




PBI_SuperUser_Rank@1x.png


Hope it resolves your issue? 
Did I answer your question? Mark my post as a solution!

Appreciate your Kudos, Press the thumbs up button!!
Linkedin Profile

Thanks so much! That seems to work. Could you perhaps explain your measure/solution so I can understand it better for the future?

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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