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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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