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

How to Allow a User to easily Filter for Any Project between two dates

I've got a report with a lot of projects on it. Each is a line item and has a start/end date. 

 

I want a user to be able to visually change a table so that they select the dates they are looking for and see what projects are going on, and/or ending, and/or starting within that date range. 

 

I think my picture explains it better....2021-04-19_10-02-33.png

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi, @DataUser 

Please check the below picture and the sample pbix file's link down below, whether it is what you are looking for.

the measure is in the sample pbix file.

At this moment, I did not create any relationship between two tables, but if you need it later, you can create an inactive relationship and use USERELATIONSHIP DAX function in a measure.

 

 

Picture3.png

 

https://www.dropbox.com/s/wmhkjkfuhs5n79e/datauser.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.

 

Linkedin: https://www.linkedin.com/in/jihwankim1975/

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

6 REPLIES 6
DataUser
Helper I
Helper I

Thanks - Taking it a step further, is there a way to make another measure that states the status? Ie: On-Going, Starting, or Ending and applies it to each project within the date range? 

Hi, @DataUser 

 

Thank you for your feedback.

Please try the below measure.

I am not quite sure whether I defined the meaning of Ending / Ongoing / Starting correctly or not.

Please insert the below measure into your visualization and you can try to fix the wordings if I defined those in the other way round.

 

Status flag =
SWITCH (
TRUE (),
SELECTEDVALUE ( Projects[Project Start] ) <= MIN ( dates[Date] )
&& SELECTEDVALUE ( Projects[Project End] ) >= MIN ( dates[Date] ), "Ending",
SELECTEDVALUE ( Projects[Project Start] ) >= MIN ( dates[Date] )
&& SELECTEDVALUE ( Projects[Project End] ) <= MAX ( dates[Date] ), "Ongoing",
SELECTEDVALUE ( Projects[Project Start] ) <= MAX ( dates[Date] )
&& SELECTEDVALUE ( Projects[Project End] ) >= MAX ( dates[Date] ), "Starting"
)

 

 

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


Jihwan_Kim
Super User
Super User

Hi, @DataUser 

Please check the below picture and the sample pbix file's link down below, whether it is what you are looking for.

the measure is in the sample pbix file.

At this moment, I did not create any relationship between two tables, but if you need it later, you can create an inactive relationship and use USERELATIONSHIP DAX function in a measure.

 

 

Picture3.png

 

https://www.dropbox.com/s/wmhkjkfuhs5n79e/datauser.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.

 

Linkedin: https://www.linkedin.com/in/jihwankim1975/

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


Lastly - Is there anyway to count the number of times this measure is true? For example, in your example , it would show up as 4? I was trying to use a datacard to do this, but I can't figure out how to count what the measure has returned and I don't want to create another table. 

Hi, @DataUser 

Pleaes check the below picture and the sample pbix file's link down below.

The measure for counting active project is like below.

 

Project Active Count =
CALCULATE (
COUNTROWS(Projects),
FILTER (
Projects,
Projects[Project Start] <= MAX ( dates[Date] )
&& Projects[Project End] >= MIN ( dates[Date] )
)
)
 
Picture1.png
 
 
 
 

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


amitchandak
Super User
Super User

@DataUser , You need to join both start and end date to the same date table. One join will be inactive which you can activate using userelationship

refer: https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-tr...

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.