Forum Discussion

IghorFerreira's avatar
IghorFerreira
New Member
1 year ago
Solved

Count Rows From 2 Different Fact Tables Based in Date

Hello, everyone! It's my first post here, sorry if there's anything wrong in the request.

 

I need to count the total amount of preventive work orders executed by machine and date in one table, but only if it was scheduled in other table so I can get the % of scheduled and executed. Some of the preventives executed aren't scheduled, so these ones can't be counted. I've made some research and tried to work it out with 2 or 3 different methods, but none did worked properly. 

 

Here's some dummy data with the simplified structure of both tables and the expected result:

 

So far I haven't tryed doing it through Power Query, but I'll accept suggestion for that too.

 

  • Hi IghorFerreira 

     

    Would the following measures help?

     

    Scheduled = 
        CALCULATE(
            COUNTROWS( 'Schedule' ),
            'Schedule'[Data] IN VALUES( 'Date'[Date] )
        )
    
    
    Completed = 
        CALCULATE(
            DISTINCTCOUNT( 'WorkOrders'[Machine] ),
            'WorkOrders'[Date] IN VALUES( 'Schedule'[Data] )
        )
    
    
    Compliance % = 
        DIVIDE( 
            [Completed], 
            [Scheduled] 
        )

     

     

    Let me know if you have any questions.

     

5 Replies

  • Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
    Do not include sensitive information. Do not include anything that is unrelated to the issue or question.
    Please show the expected outcome based on the sample data you provided.

    Need help uploading data? https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216
    Want faster answers? https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523

  • Hi IghorFerreira 

     

    Would the following measures help?

     

    Scheduled = 
        CALCULATE(
            COUNTROWS( 'Schedule' ),
            'Schedule'[Data] IN VALUES( 'Date'[Date] )
        )
    
    
    Completed = 
        CALCULATE(
            DISTINCTCOUNT( 'WorkOrders'[Machine] ),
            'WorkOrders'[Date] IN VALUES( 'Schedule'[Data] )
        )
    
    
    Compliance % = 
        DIVIDE( 
            [Completed], 
            [Scheduled] 
        )

     

     

    Let me know if you have any questions.

     

  • v-kpoloju-msft's avatar
    v-kpoloju-msft
    Community Support

    Hi IghorFerreira,


    May i know has your issue been resolved? If the response provided by the Super user gmsamborn, addressed your query, could you please confirm? It helps us ensure that the solutions provided are effective and beneficial for everyone.

    If yes, kindly accept the useful reply as a solution and give us Kudos. It would be appreciated.

    Thank you for your understanding!

    • v-kpoloju-msft's avatar
      v-kpoloju-msft
      Community Support

      Hi IghorFerreira,


      I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.


      Thank you.

      • v-kpoloju-msft's avatar
        v-kpoloju-msft
        Community Support

        Hi IghorFerreira,


        I hope this information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, please Accept it as a solution and give it a 'Kudos' so others can find it easily.


        Thank you.