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
Racquel
New Member

Text contains from a different table and returning the latest field

Hi,

My aim is to produce a visual that will show customer payment days (ie how long it took them to pay the full invoice)

I have 2 tables. Invoices and Payments.

The invoices have a unique audit number.

The payments have an allocation column which may contain multiple invoice audit numbers.

The payments allocation column may also have one invoice audit number against multiple payments (if there has been part payments). 

Payments:

Racquel_0-1680136651027.png

Invoices:

Racquel_3-1680137502035.png

 

Formula:

let InvAuditNo=[AutoIdx]
in

Text.Combine(
Table.SelectRows(CustomerPayments,
each Text.Contains(InvAuditNo,[cAllocs]))
[TxDate]
,
",")

 

As you can see, I am trying to bring in the TxDate from the payments table into the invoices table.

The PaymentDate column gives me an error - is this because there may be multiple payment dates or the column I am brinbging in is a date?

 

How can I change this formula to bring in the last date that was allocated to the invoice and no date if there has been no payment yet?

 

Kind regards

R

1 ACCEPTED SOLUTION
wdx223_Daniel
Super User
Super User

let InvAuditNo=[AutoIdx]
in

List.Max(
Table.SelectRows(CustomerPayments,
each Text.Contains([cAllocs],InvAuditNo))
[TxDate]
)

View solution in original post

2 REPLIES 2
Racquel
New Member

Perfect, Thank you SO much 🙂

wdx223_Daniel
Super User
Super User

let InvAuditNo=[AutoIdx]
in

List.Max(
Table.SelectRows(CustomerPayments,
each Text.Contains([cAllocs],InvAuditNo))
[TxDate]
)

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.

Top Solution Authors
Top Kudoed Authors