cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
TTC
Super User
Super User

how to copy and paste from two different excel sheet from one excel to another excel file

Hello all,

I have two different excel files but I need to copy from Excel to another Excel worksheet by using PAD.  All I can see so far on the web is how to copy the data in the same excel worksheet but they create another data tab/sheet and paste in the same worksbook.  I don't want to copy the same data on one excel and then create a new sheet in the same excel and paste the same data.

As I mentioned, I have two different Excel files.  For example, one file called 'DayBreak Fast.xlsx and the other Excel file called R&L Carriers.xlsx.  I want to know how to copy the data from Daybreak Fast.xlsx to R+L Carriers.xlsx, but I need to paste the data from column 'E' to row 3 and then I have another file call Rogers.xlsx and I need to copy and paste the value to the same excel file R+L Carrier.xlsx and so on... 

But let say the first file ended in row 50, I want the second file to be paste in the column 'E' but to row 51 and so on...

I will skip the column heading on the file that copy from (Daybreak and Rogers). The R&L Carriers excel is like a template file with heading that I want to copy all other excel files into R+L Carriers.xlsx

9 REPLIES 9

This will be 100x faster in Excel VBA, but if you are intent on using PAD:

 

You'll have to get the list of files somewhere.  Easiest way would be if all those files were in a "to be processed" folder, but if not, then you could list them on a spreadsheet or something and pull them in that way or make copies of them to a "to be processed" folder and do the following:


Get files (from to be processed)
Launch Excel R&L (ExcelInstance1)

Get first free row on Column E to %FFR%

For each CurrentItem in %Files%

    Launch Excel %CurrentItem% to %ExcelInstance2%

        get first free row on column E to %FFR2%

        copy cells E,2 to (whatever column you need)%FFR2 - 1%

        Paste cells to E and %FFR% IN EXCELINSTANCE (not ExcelInstance2, we want the first one)

    Close ExcelInstance2

    Get first free row (from ExcelInstance1) on Column E to %FFR% 'have to reset the FFR for the next loop

End for each

 

This should loop through each file from Get files and paste them into ExcelInstance

 

Good luck!

----
If my post has answered your question, please thumbs up and mark this post as a solution.

I also offer paid consulting services at www.peakdigitran.com/appointments and you can find me on LinkedIn at https://www.linkedin.com/in/michael-annis-80903/,

Hi @TTC ,

 

Please find the solution.

 

VishnuReddy1997_1-1714454113193.pngVishnuReddy1997_2-1714454203875.png

 

Code:

Please copy the below code to your flow.

 

Excel.LaunchExcel.LaunchAndOpenUnderExistingProcess Path: $'''C:\\Users\\OneDrive\\Desktop\\Power Automate Desktop\\Practice\\Excel\\DayBreak Fast.xlsx''' Visible: True ReadOnly: False Instance=> ExcelInstance_1
Excel.GetFirstFreeColumnRow Instance: ExcelInstance_1 FirstFreeColumn=> FirstFreeColumn FirstFreeRow=> FirstFreeRow
Excel.CopyCellsFromExcel.CopyCells Instance: ExcelInstance_1 StartColumn: $'''A''' StartRow: 2 EndColumn: $'''D''' EndRow: FirstFreeRow - 1
Excel.LaunchExcel.LaunchAndOpenUnderExistingProcess Path: $'''C:\\Users\\OneDrive\\Desktop\\Power Automate Desktop\\Practice\\Excel\\R&L Carriers.xlsx''' Visible: True ReadOnly: False Instance=> ExcelInstance_2
Excel.PasteCellsToExcel.PasteAt Instance: ExcelInstance_2 Column: $'''E''' Row: 2
Excel.CloseExcel.Close Instance: ExcelInstance_1
Excel.LaunchExcel.LaunchAndOpenUnderExistingProcess Path: $'''C:\\Users\\OneDrive\Desktop\\Power Automate Desktop\\Practice\\Excel\\Rogers.xlsx''' Visible: True ReadOnly: False Instance=> ExcelInstance_3
Excel.GetFirstFreeColumnRow Instance: ExcelInstance_3 FirstFreeColumn=> FirstFreeColumn FirstFreeRow=> FirstFreeRow
Excel.CopyCellsFromExcel.CopyCells Instance: ExcelInstance_3 StartColumn: $'''A''' StartRow: 2 EndColumn: $'''D''' EndRow: FirstFreeRow - 1
Excel.GetFirstFreeColumnRow Instance: ExcelInstance_2 FirstFreeColumn=> FirstFreeColumn FirstFreeRow=> FirstFreeRow
Excel.PasteCellsToExcel.PasteAt Instance: ExcelInstance_2 Column: $'''E''' Row: FirstFreeRow
Excel.CloseExcel.CloseAndSave Instance: ExcelInstance_2
Excel.CloseExcel.CloseAndSave Instance: ExcelInstance_3

 

(Note:- if you got your solution you can mark as solution and gives kudos)

 

Thanks & Regards

Vishnu Reddy

@VishnuReddy1997 

Hi,

Thank you for the visual.  Question, I don't see any loop through your script.  So, how the script will know to open next file and to copy & paste it to the other file and so on?

@MichaelAnnis 

Is there a way I can see your step through PAD?  If you show the steps through PAD it will be helpful for me.

Also, I have been Google to get this working through VBA as you mentioned so far I found nothing yet.  I will need some kind of visual to see how it get done in VBA.

Thanks for reply to my task.

I have a PAD/macro combination for combining excel sheets with the same column set here:

https://powerusers.microsoft.com/t5/Power-Automate-Desktop/Entering-the-data-from-more-than-1-excel-...

 

Good luck!

----
If my post has answered your question, please thumbs up and mark this post as a solution.

I also offer paid consulting services at www.peakdigitran.com/appointments and you can find me on LinkedIn at https://www.linkedin.com/in/michael-annis-80903/,

Hi @TTC ,

 

I have made the flow dynamic now.If there are 100's of files in Input Folder it will all copy to output one after other.

Please find the solution.

VishnuReddy1997_0-1714535713235.png

 

Code:

Folder.GetFiles Folder: $'''C:\\Users\\OneDrive\\Desktop\\Power Automate Desktop\\Practice\\Excel\\Input''' FileFilter: $'''*''' IncludeSubfolders: False FailOnAccessDenied: True SortBy1: Folder.SortBy.NoSort SortDescending1: False SortBy2: Folder.SortBy.NoSort SortDescending2: False SortBy3: Folder.SortBy.NoSort SortDescending3: False Files=> Excel_Files
LOOP FOREACH CurrentItem_ExcelFile IN Excel_Files
    Excel.LaunchExcel.LaunchAndOpenUnderExistingProcess Path: CurrentItem_ExcelFile.FullName Visible: True ReadOnly: False Instance=> Input_ExcelInstance
    Excel.GetFirstFreeColumnRow Instance: Input_ExcelInstance FirstFreeColumn=> FirstFreeColumn FirstFreeRow=> FirstFreeRow
    Excel.CopyCellsFromExcel.CopyCells Instance: Input_ExcelInstance StartColumn: $'''A''' StartRow: 2 EndColumn: FirstFreeColumn - 1 EndRow: FirstFreeRow - 1
    Excel.LaunchExcel.LaunchAndOpenUnderExistingProcess Path: $'''C:\\Users\\OneDrive\\Desktop\\Power Automate Desktop\\Practice\\Excel\\R&L Carriers.xlsx''' Visible: True ReadOnly: False Instance=> Output_ExcelInstance
    Excel.GetFirstFreeColumnRow Instance: Output_ExcelInstance FirstFreeColumn=> FirstFreeColumn FirstFreeRow=> FirstFreeRow
    Excel.PasteCellsToExcel.PasteAt Instance: Output_ExcelInstance Column: $'''E''' Row: FirstFreeRow
    Excel.CloseExcel.Close Instance: Input_ExcelInstance
END
Excel.CloseExcel.CloseAndSave Instance: Output_ExcelInstance

 

(Note:- if you got your solution you can mark as solution and gives kudos)

 

Thanks & Regards

Vishnu Reddy

 

Thank you Sir!

You're correct.  the VBA is 100 times faster and I was able to manage the task through VBA.  I also have the PAD code for backup

TTC
Super User
Super User

@VishnuReddy1997 

Thank you sir for the steps through PAD.  I will try your solution and let you know if I got issue.

It's always good to know you can accomplish a task by using different application.

Thanks again!

Hi @TTC ,

 

Sure please and let me if it is working or Not.

 

(Note:- if you got your solution you can mark as solution and gives kudos)


Thanks & Regards

Vishnu Reddy

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (1,796)