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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
GTPowerBIUser
Helper III
Helper III

Show when two float/ double numbers are the same in two seperate tables

I have two tables:

 

Cash Receipts (Amount, Customer, other columns)

Accounts Receivable Aging (Balance Due, Customer, other columns)

 

I would like to show when the Cash Receipt amount for a given customer is the same as the Balance Due amount for that same customers. There could be numerous Cash Recepts and numerous Balance Due amounts... My hope is to make life easier on the billing team in some way to allow power bi to do this work for them.

 

Here is an example.

 

2021-09-23_12-20-21.jpg

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@GTPowerBIUser Maybe:

Column = 
  VAR __Amount = [Transaction Amount]
  VAR __Customer = [Customer Name]
  VAR __Invoice = MAXX(FILTER('AR',[Customer Name] = __Customer && [Balance Due]=__Amount),[Invoice Number])
RETURN
  __Invoice

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
GTPowerBIUser
Helper III
Helper III

Wow, worked like a charm. I only needed to add abs() to the amounts.

Greg_Deckler
Super User
Super User

@GTPowerBIUser Maybe:

Column = 
  VAR __Amount = [Transaction Amount]
  VAR __Customer = [Customer Name]
  VAR __Invoice = MAXX(FILTER('AR',[Customer Name] = __Customer && [Balance Due]=__Amount),[Invoice Number])
RETURN
  __Invoice

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.