Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare 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).
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
31 | |
16 | |
14 | |
14 | |
9 |