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! Learn more

Reply
Tome_05
Helper III
Helper III

How can I append the data in column A to the data in column B?

I am always grateful for your help.

Is there a way to add the data in column A to the data in column B and reflect the data in C to E as it is, as shown in the attached image?

thank you.

スクリーンショット 2022-08-08 174935.jpg

2 REPLIES 2
Tome_05
Helper III
Helper III

@ddpl 

thank you for your answer.

I tried this correspondence, but it did not work well because the same number was extracted continuously.

ddpl
Solution Sage
Solution Sage

@Tome_05 , the folowing solution work in power query,

 

First append the table with self.

bin18.png

 

then group by...

bin19.png

 

Create a custom column...

rest_2 = Table.AddIndexColumn([rest_1], "Index", 1)

 

Remove A and rest_1 column and expand the rest_2 column.

 

Create another custom column...

A&B = if [Index]>1 then [A] else [B]

 

Remove A, B & Index column and Bananas...

bin20.png

 

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