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
prl
Frequent Visitor

Subtract columns from 2 tables

Hello,

 

I am trying to build result table (Say C) which is derived from Table A and Table B. Table A and Table B has same columns and more than 500K records. User can filter records based on indepedent date slicer for each table.  How can I get below result in PowerBI (Table C = TableA on X date - TableB on Y date) ?

 

SELECT 

ISNULL(a.ID , b.ID) as ID,

ISNULL(a.CategoryID , b.CategoryID) as CategoryID,

ISNULL(a.Year , b.Year) as FYear,

ISNULL(a.Quarter , b.Quarter) as FQuarter,

(ISNULL(a.Val,0) -ISNULL( b.Val,0) ) as ResultVal

FROM (select * from TableA where sDate=X) as a

FULL OUTER JOIN (Select * from TableB where sDate=Y) as b

ON a.ID=b.ID and a.CategoryID=b.CategoryID and a.Year=b.Year and a.Quarter=b.Quarter

2 REPLIES 2
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @prl ,

Have you solved your problem?

If you have solved, please accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.

If you still need help, please feel free to ask.

Best  Regards,

Cherry

 

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @prl ,

From your description, I think we could achieve your desired output with dax expression.

To get the solution more quickly, please share some data sample which could reproduce your scenario and your desired output so that we could help further on it.

Best  Regards,

Cherry

 

Community Support Team _ Cherry Gao
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.