Forum Discussion

pedroccamaraDBI's avatar
pedroccamaraDBI
Icon for Post Partisan rankPost Partisan
4 years ago
Solved

COUNT from other table

Hello guys
From this model, i would like to be able to count all documentID (Document) that belong to a certain seller name and/or seller type (ContractSeller). Each saller may have more than 1 document and the seller type can have more than one value

Can you help?
Thanks a lot

  • Hi pedroccamaraDBI ,

     

    Per the description, I create some sample data and build the following relationships for them.

    ContractSaller Table

     

    Contract Table

     

    Document Table

     

     

    Then, create the following Measure.

     

    CountDocument =
    
    CALCULATE (
    
        DISTINCTCOUNT ( Document[DocumentID] ),
    
        TREATAS ( VALUES ( ContractSaller[ContractID] ), Document[ContractID] )
    
    )

     

     

    The result should look like this.

     

    Also, attached the pbix file as reference.

     

    If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let me know. Thanks a lot!

     

    Best Regards,

    Community Support Team _ Caiyun

3 Replies

  • v-cazheng-msft's avatar
    v-cazheng-msft
    Icon for Community Support rankCommunity Support

    Hi pedroccamaraDBI ,

     

    Per the description, I create some sample data and build the following relationships for them.

    ContractSaller Table

     

    Contract Table

     

    Document Table

     

     

    Then, create the following Measure.

     

    CountDocument =
    
    CALCULATE (
    
        DISTINCTCOUNT ( Document[DocumentID] ),
    
        TREATAS ( VALUES ( ContractSaller[ContractID] ), Document[ContractID] )
    
    )

     

     

    The result should look like this.

     

    Also, attached the pbix file as reference.

     

    If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let me know. Thanks a lot!

     

    Best Regards,

    Community Support Team _ Caiyun