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

Subtract multiple columns from two tables

I have two tables organized by MMYYYY and sales rep with the exact same data columns for attempts, contacts, sales (and 20 other data columns) but need to subtract the same columns from one table to the other.  I'm trying to use power query but am stumped as to the best solution.

1 ACCEPTED SOLUTION

Hi @sglendenning ,

 

Check this file: Download PBIX 

 

Capture.PNG



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



View solution in original post

7 REPLIES 7
Greg_Deckler
Super User
Super User

Would Appending the tables help?


@ 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...
camargos88
Community Champion
Community Champion

@sglendenning ,

 

Can you give some example with dummy data ?



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



Table1

DateSalesRepAttemptsContactsSales
202004Joe100105
202004Sue1502010
202003Joe200202
202003Sue503020

 

Table2

DateSalesRepAttemptsContactsSales
202004Joe1051
202004Sue511
202003Joe2052
202003Sue410
     

 

I need to subtract Table1 from Table2 by date and SalesRep.  So output would be;

DateSalesRepAttemptsContactsSales
202004Joe9054
202004Sue145199
202003Joe180150
202003Sue462920

// QueryOut
let
    Source = Table1&Table2,
    funcLists = List.Transform(List.Skip(Table.ColumnNames(Source),2),each {_,(x)=>let lst=Table.Column(x,_) in lst{0}-lst{1}}),
    result = Table.Group(Source,{"Date","SalesRep"},funcLists)    
in
    result

Check my file:  Subtract multiple columns from two tables.pbix 

 

If my code solves your problem, mark it as a solution

Hi @sglendenning ,

 

Check this file: Download PBIX 

 

Capture.PNG



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



Thank you, I'm new to Power Query so much appreciated.  What does the {0} do at the end of the formula?  Can I ask how you would write within the formula if there is no value for the rep in Table2 how you would return the value in Table1?

Hi, @sglendenning 

I merged the two tables directly and then grouped them, "{0},  {1}" being the table1 and the table2 corresponding to the values in each column. I didn't consider that rep in Table2 has no value. You can simulate the new data. Let me see how to realize it.

 

My text is machine translated, I wonder if the translation can make you understand my meaning

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