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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Jay2077
Helper III
Helper III

Can I add 2 data sheets together ( new to existing)

Basically I was updating from a spreadsheet which can longer fit any further data on it's going down by dates and I need to add 21st April 2020.  Any help greatly appreciated.

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

Hi @Jay2077,

You can add a step to get data from other datarouce, then you can write a custom step invoke and combine these tables if they have the same data structure.

let
    Source = Excel.Workbook(File.Contents("E:\xxxxx.xlsx"), null, true),
    Source2 = Excel.Workbook(File.Contents("F:\xxxxx2.xlsx"), null, true),
    Combine = Table.Combine({Source,Source2})
in
    Combine

Regards,

Xiaoxin Sheng

View solution in original post

Anonymous
Not applicable

HI @Jay2077,

You can refer to your navigation steps to append them to your source step: (you can modify the item parameter to get data from specific sheet tab that you wanted)

let
    Source = Excel.Workbook(File.Contents("E:\xxxxx.xlsx"), null, true){[Item="Sheet1",Kind="Sheet"]}[Data],
    Source2 = Excel.Workbook(File.Contents("F:\xxxxx2.xlsx"), null, true){[Item="Sheet2",Kind="Sheet"]}[Data],
    Combine = Table.Combine({Source,Source2})
in
    Combine

Regards,

Xiaoxin Sheng

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @Jay2077,

You can add a step to get data from other datarouce, then you can write a custom step invoke and combine these tables if they have the same data structure.

let
    Source = Excel.Workbook(File.Contents("E:\xxxxx.xlsx"), null, true),
    Source2 = Excel.Workbook(File.Contents("F:\xxxxx2.xlsx"), null, true),
    Combine = Table.Combine({Source,Source2})
in
    Combine

Regards,

Xiaoxin Sheng

 Also am i referring to files on my desk top (not files already within power bi) and if so how do I direct to a certain tab on the excel worksheet?

 

Thank you for all your help. 

Anonymous
Not applicable

HI @Jay2077,

You can refer to your navigation steps to append them to your source step: (you can modify the item parameter to get data from specific sheet tab that you wanted)

let
    Source = Excel.Workbook(File.Contents("E:\xxxxx.xlsx"), null, true){[Item="Sheet1",Kind="Sheet"]}[Data],
    Source2 = Excel.Workbook(File.Contents("F:\xxxxx2.xlsx"), null, true){[Item="Sheet2",Kind="Sheet"]}[Data],
    Combine = Table.Combine({Source,Source2})
in
    Combine

Regards,

Xiaoxin Sheng

Thanks please excuse my ignorance but where do I write the custom step please ?

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors