Forum Discussion

RichOB's avatar
RichOB
Icon for Post Partisan rankPost Partisan
1 year ago
Solved

Need help joining a table to filter values as not active

Hi, I need to show a list of the counties that were not active in a quarter. I have a full county dimension set (as it's not in my CRM), then I have my data table. I already have a measure that gives me the exact number of active local authorities per quarter. I just need to link the dimension set and show the counties NOT active per quarter. Ho can this be done please?

 

All Counties Table

Counties_All
Bedfordshire
Berkshire
Bristol
Buckinghamshire
Cambridgeshire
Cheshire


This is my data set (Bristol is still active as it has 1 property active): 

CountiesPropertyCreated_date Decommissioned_Date
BedfordshireL101/04/202405/10/2024
BedfordshireL201/04/202405/10/2024
Bristol L301/04/2024 
Bristol L401/04/202401/05/2024
BuckinghamshireL501/04/202401/09/2024
BuckinghamshireL601/04/202401/09/2024
BuckinghamshireL701/04/202401/09/2024
CambridgeshireL801/04/202401/08/2024
CambridgeshireL901/04/202401/08/2024
CheshireL1001/04/2024 


For example, I need the counties not active to show:

Bedfordshire
Berkshire
Buckinghamshire
Cambridge
  • RichOB - Make a relationship between your All counties table, and your data table, then use the measure you have that counts the active counties on a table visual (with the column from the dimension), and set the meausre to "is blank"

     

    If I answered your question please mark my post as the solution, it helps others with the same challenge find the answer!

6 Replies

  • RichOB - Make a relationship between your All counties table, and your data table, then use the measure you have that counts the active counties on a table visual (with the column from the dimension), and set the meausre to "is blank"

     

    If I answered your question please mark my post as the solution, it helps others with the same challenge find the answer!

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi RichOB,

    Just following up to our previous message. I'd like to confirm if you've successfully resolved this issue or if you need further help.

    If yes, you are welcome to share your workaround and mark it as a solution so that other users can benefit as well. If you find a reply particularly helpful to you, you can also mark it as a solution.
    If so, it would be really helpful for the community if you could mark the answer that helped you the most. If you're still looking for guidance, feel free to give us an update, we’re here for you.

     

    Best Regards,

    Hammad.

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi RichOB,

      As we haven’t heard back from you, so just following up to our previous message. I'd like to confirm if you've successfully resolved this issue or if you need further help.

      If yes, you are welcome to share your workaround and mark it as a solution so that other users can benefit as well. If you find a reply particularly helpful to you, you can also mark it as a solution.
      If so, it would be really helpful for the community if you could mark the answer that helped you the most. If you're still looking for guidance, feel free to give us an update, we’re here for you.

       

      Best Regards,

      Hammad.

      • Anonymous's avatar
        Anonymous
        Not applicable

        Hi RichOB,
        I just wanted to follow up on your thread. If the issue is resolved, it would be great if you could mark the solution so other community members facing similar issues can benefit too.
        If not, don’t hesitate to reach out, we’re happy to keep working with you on this. 

         

        Best Regards,

        Hammad.

  • Hi,

    Assuming there is a relationship (Many to One and Single) from Table2 to Table1, to your Table visual, drag Countries from Table1 and write this measure

    Measure = calculate(countrows(Data),Data[Decommissioned_Date]=blank())

    Hope this helps.