The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Solved! Go to Solution.
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
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
Hi @pedroccamaraDBI
Can you please share sample data or pbix file
Proud to be a Super User! | |
User | Count |
---|---|
26 | |
12 | |
8 | |
8 | |
5 |
User | Count |
---|---|
30 | |
14 | |
12 | |
12 | |
7 |