Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Table 1 CustomerMaster:
CustomerNumber | Customer Name |
100 | Apple |
101 | Microsoft |
Table 2, Open invoices in ERP:
CustomerNumber | Invoice | Amount |
100 | 3 | 1000 |
100 | 4 | 2000 |
101 | 5 | 3000 |
Table 3, Open invoices InvoicePartner:
CustomerNumber | Invoice | Amount |
100 | 3 | 1000 |
101 | 5 | 3000 |
Relationship is on KundeNummer in each table.
I have a measure to calculate the difference of these two tables.
Measure is:
Difference = VAR _DIFF_CHECK = [SUM ERP]-[SUM InvoicePartner] Return IF(_DIFF_CHECK<>0, _DIFF_CHECK)
it returns this:
CustomerNumber | Difference |
100 | 2000 |
101 | 0 |
How can i create a card visual/measure to say that number of customers with difference is 1?
i am not able to do a countIF(Difference<>0)
Solved! Go to Solution.
To create a card visual or measure that displays the number of customers with differences in the "Difference" measure, you can follow these steps:
CountOfCustomersWithDifferences = COUNTROWS(FILTER(CustomerMaster, [Difference] <> 0))
This measure counts the rows in the "CustomerMaster" table where the "Difference" measure is not equal to 0.
Add a card visual to your report.
In the card visual, use the "CountOfCustomersWithDifferences" measure as the value to display.
Now, your card visual will show the number of customers with differences in their invoices. If the "Difference" measure is not equal to 0 for a customer, it will be counted in this card visual. In your example data, it will show "1" because there is one customer with a difference (CustomerNumber 100).
To create a card visual or measure that displays the number of customers with differences in the "Difference" measure, you can follow these steps:
CountOfCustomersWithDifferences = COUNTROWS(FILTER(CustomerMaster, [Difference] <> 0))
This measure counts the rows in the "CustomerMaster" table where the "Difference" measure is not equal to 0.
Add a card visual to your report.
In the card visual, use the "CountOfCustomersWithDifferences" measure as the value to display.
Now, your card visual will show the number of customers with differences in their invoices. If the "Difference" measure is not equal to 0 for a customer, it will be counted in this card visual. In your example data, it will show "1" because there is one customer with a difference (CustomerNumber 100).
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
25 | |
21 | |
20 | |
14 | |
13 |
User | Count |
---|---|
44 | |
37 | |
25 | |
24 | |
23 |