Forum Discussion

DataUser's avatar
DataUser
Icon for Helper I rankHelper I
5 years ago
Solved

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....

  • 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.

     

     

     

    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/

6 Replies

  • 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.

     

     

     

    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/

    • DataUser's avatar
      DataUser
      Icon for Helper I rankHelper I

      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. 

      • Jihwan_Kim's avatar
        Jihwan_Kim
        Icon for Super User rankSuper User

        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] )
        )
        )
         
         
         
         
         
  • 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? 

    • Jihwan_Kim's avatar
      Jihwan_Kim
      Icon for Super User rankSuper User

      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"
      )