Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
bignadad
Helper I
Helper I

Get a list of differences based on filtered values of two table visuals

I am working on balancing my G/L entry to my Sales Invoice/Credit

 

I have these two table visuals shown belowScreenshot 2024-01-18 120810.png

 

Anytime I find a difference I am exporting each of the top 2 tables (sales/gl) to excel and going a vlookup to find which document no is missing from the other.

 

I would like to create a table so I can see all document no's that are missing from either table.

2 REPLIES 2
bignadad
Helper I
Helper I

Thank you very much for the response but the problem is the document no might be in the table. The filters are what cause it not to show up on the report when i'm comparing the two tables. So this would have to be based off the filters applied to those table visuals. 

Anonymous
Not applicable

Hi @bignadad ,

Here some steps that I want to share, you can check them if they suitable for your requirement.

Here is my test data:
Table GLEntries

vheqmsft_0-1705641968035.png

Table SalesInvoices

vheqmsft_1-1705641993466.png
1.Creat two tables to extract the values from the different Document No columns in the two tables

GL_DocNumbers = DISTINCT(GLEntries[Document No])
Sales_DocNumbers = DISTINCT(SalesInvoices[Document No])

2.Create two more tables to show the missing numbers on each side.

Missing_In_Sales = EXCEPT(GL_DocNumbers, Sales_DocNumbers)
Missing_In_GL = EXCEPT(Sales_DocNumbers, GL_DocNumbers)

3.Final output

vheqmsft_2-1705642833042.png

 

Best regards

Albert He

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
 

 

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.