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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
tomekm
Helper III
Helper III

Combining/appending 2 reports from the same table into 1

Hi,

I currently have 2 reports built (pointing to the same table) with 3 columns each (2 of them are the same column names; 1 column is different) that I would like to combine/union into 1 single report, based on the same “Period”, and provide the net value of the change (“Impact” column). Please see screenshot below. The second screenshot is the desired output report. How can I accomplish this?

 

a.JPG

 

b.JPG

 

Thanks.

2 ACCEPTED SOLUTIONS

Yes. Please see below. I'm looking to combine the 6 columns into 3 common ones (with the last one being the "net Impact" column).

 

Period (removals)RemovalsImpact (Removals)Period (adds)AddsImpact (Adds)
Apr-2021Removal-5Apr-2021Add1
May-2021Removal-8May-2021Add3
Jun-2021Removal-9Jun-2021Add6
Jul-2021Removal-3Jul-2021Add7
Aug-2021Removal-1Aug-2021Add2
Sep-2021Removal-5Sep-2021Add9

 

 

 

View solution in original post

v-jingzhang
Community Support
Community Support

Hi @tomekm 

 

Create a new table with below code, then add all columns into a table visual.

Table 2 = UNION(SELECTCOLUMNS('Table',"Period",'Table'[Period (removals)],"Removals",'Table'[Removals],"Impact",'Table'[Impact (Removals)]),SELECTCOLUMNS('Table',"Period",'Table'[Period (adds)],"Removals",'Table'[Adds],"Impact",'Table'[Impact (Adds)]))

21091704.jpg

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

View solution in original post

3 REPLIES 3
v-jingzhang
Community Support
Community Support

Hi @tomekm 

 

Create a new table with below code, then add all columns into a table visual.

Table 2 = UNION(SELECTCOLUMNS('Table',"Period",'Table'[Period (removals)],"Removals",'Table'[Removals],"Impact",'Table'[Impact (Removals)]),SELECTCOLUMNS('Table',"Period",'Table'[Period (adds)],"Removals",'Table'[Adds],"Impact",'Table'[Impact (Adds)]))

21091704.jpg

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

amitchandak
Super User
Super User

@tomekm , Can you share source data in table format

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Yes. Please see below. I'm looking to combine the 6 columns into 3 common ones (with the last one being the "net Impact" column).

 

Period (removals)RemovalsImpact (Removals)Period (adds)AddsImpact (Adds)
Apr-2021Removal-5Apr-2021Add1
May-2021Removal-8May-2021Add3
Jun-2021Removal-9Jun-2021Add6
Jul-2021Removal-3Jul-2021Add7
Aug-2021Removal-1Aug-2021Add2
Sep-2021Removal-5Sep-2021Add9

 

 

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors