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
VictorV
Helper I
Helper I

Create Matrix table, with data from multiple table

Hi everyone, I have Table 1 and Table2 like the picture.

I want create new table, using matrix table for showing transaction from the bank in Table1. Each invoice No. will match with that transaction.

There are two thing will alway happen:

 

First: the total Amount of Invoice No in Table 2 will alway be the same with Table1[Debit]. For example, if Table1[Date] 1/22/2024 have Debit is 30000, then the Invoice will be 661 and 662 because these two sum will be 30000.

 

Second: The Table1[Date] will alway after the Table2[Date]. Because the transaction from the bank will alway happen after the Date in Table2

VictorV_0-1713261022712.png

 

Please help me!!!!!!

 

1 ACCEPTED SOLUTION
v-tianyich-msft
Community Support
Community Support

Hi @VictorV ,

 

I made simple samples and you can check the results below:

vtianyichmsft_2-1713338004528.png

Total = CALCULATE(SUMX('Table (2)',[Amount]),FILTER('Table (2)',[Date]=EARLIER([Date])))

balance = 
VAR _MAXNO = MAXX(FILTER(ALL('Table (2)'),'Table (2)'[Total] = MAX('Table'[Debit])),'Table (2)'[Invoice No])
return
IF(MAX('Table (2)'[Invoice No]) = _MAXNO,SUM('Table'[Debit]),BLANK())

 

An attachment for your reference. Hope it helps!

 

Best regards,
Community Support Team_ Scott Chang

 

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

View solution in original post

1 REPLY 1
v-tianyich-msft
Community Support
Community Support

Hi @VictorV ,

 

I made simple samples and you can check the results below:

vtianyichmsft_2-1713338004528.png

Total = CALCULATE(SUMX('Table (2)',[Amount]),FILTER('Table (2)',[Date]=EARLIER([Date])))

balance = 
VAR _MAXNO = MAXX(FILTER(ALL('Table (2)'),'Table (2)'[Total] = MAX('Table'[Debit])),'Table (2)'[Invoice No])
return
IF(MAX('Table (2)'[Invoice No]) = _MAXNO,SUM('Table'[Debit]),BLANK())

 

An attachment for your reference. Hope it helps!

 

Best regards,
Community Support Team_ Scott Chang

 

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

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.