Forum Discussion
Anonymous
8 years agoNot applicable
Count distinct rows from other table + value
Hi all, I've got a new question. I've got 2 data sources. Source 1: All the names of the employees and their empl. number Source 2: several names of employees and the devices that they have...
- 8 years ago
Anonymous
In addition to Omega, for the requirement "if they don't have any devices the value must be 0", create measure as
Total Devices = IF(ISBLANK(countA(Devices[Device])),0,countA(Devices[Device]))
See the demo pbix file attched.
Eric_Zhang
8 years agoMicrosoft Employee
Anonymous
In addition to Omega, for the requirement "if they don't have any devices the value must be 0", create measure as
Total Devices = IF(ISBLANK(countA(Devices[Device])),0,countA(Devices[Device]))
See the demo pbix file attched.
Anonymous
8 years agoNot applicable
Hi all,
many thanks for your help, it's working like you described!
Thanks