Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi,
My calulation below is showing values True or False:
Missing Invoices From Sales By GL = CALCULATE( COUNTROWS('Sales Invoices by GL Account'), FILTER( 'Sales Invoices by GL Account', 'Sales Invoices by GL Account'[Invoice Number] = EARLIER('VAT Report - VAT Return'[Invoice Number]) ) ) > 0
I want to show 'Matched' if the invoice is found in both reports and 'Missing' if not found, however it just shows Ture and False in my results. I am not sure how to change the values.
Thank you in advance
Solved! Go to Solution.
Or this, without the variable:
Missing Invoices From Sales By GL = IF ( CALCULATE ( COUNTROWS ( 'Sales Invoices by GL Account' ), FILTER ( 'Sales Invoices by GL Account', 'Sales Invoices by GL Account'[Invoice Number] = EARLIER ( 'VAT Report - VAT Return'[Invoice Number] ) ) ) > 0, "Matching", "Missing" )
Thank you, that was the solution I was looking for.
Hi @craig811
Are the TRUE and FALSE that you get now correct already, I mean, would you just want to have ' Matched' in place of TRUE and 'Missing' in place of FALSE?
Thank you for the reply.
Yes, the Ture and False values are correct. However, I just want to rename them 'Matched' for True and Missing' for False, within my above formula.
Thank you
Ok, then try this, which reuses your code:
Missing Invoices From Sales By GL = VAR _Result = CALCULATE ( COUNTROWS ( 'Sales Invoices by GL Account' ), FILTER ( 'Sales Invoices by GL Account', 'Sales Invoices by GL Account'[Invoice Number] = EARLIER ( 'VAT Report - VAT Return'[Invoice Number] ) ) ) > 0 RETURN IF ( _Result, "Matched", "Missing" )
Or this, without the variable:
Missing Invoices From Sales By GL = IF ( CALCULATE ( COUNTROWS ( 'Sales Invoices by GL Account' ), FILTER ( 'Sales Invoices by GL Account', 'Sales Invoices by GL Account'[Invoice Number] = EARLIER ( 'VAT Report - VAT Return'[Invoice Number] ) ) ) > 0, "Matching", "Missing" )
Thank you, that was the solution I was looking for.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
100 | |
72 | |
44 | |
38 | |
29 |
User | Count |
---|---|
156 | |
92 | |
62 | |
44 | |
41 |