cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

Flow: Copy Excel file if original file was updated & remove rows/columns

I am currently upgrading my existing flow and struggeling with Office Scripts.

 

My flow does already:

Trigger: If a selected Sharepoint file (Excel file in my case) has changed

Flow: Copy the file to another sharepoint (Goal: Use it with other collaborators and change it) and replace the existing one

 

Now I want to improve it, as the file is 85mb big I want to remove all columns and rows which aren't necessary for my usecase. To do so I wrote an Office Script and extended the flow to a 3rd step:

 

3. Excel Online - Run Sharepoint Script

Selecting the newly copied file and the script.osts file. But I get an error message:

 

The dynamic operation request to API 'excelonlinebusiness' operation 'GetSingleScriptV2' failed with status code 'BadGateway'. Error response: { "error": { "code": 502, "source": "europe-001.azure-apim.net", "clientRequestId": "", "message": "BadGateway", "innerError": { "status": 502...

 

 

I saw that 502 errors might be caused by read-only files, but this isn't the case.

 

But as I'm new to Office Scripts and how to run them with Power Automate I don't know if this is the right way how to do it and in the docs I found on several places that Office Scripts can't be executed if they are stored on Sharepoint. Do you have some tipps how to progress?

1 ACCEPTED SOLUTION

Accepted Solutions

It looks like you want to run the script on the copied workbook. Have you manually typed in the file path? If so, that won't work: you need to use the file id returned from the copy file action. See Solved: Re: Run Excel script error when passing dynamic fi... - Power Platform Community (microsoft.... and Excel Online (Business) - Connectors | Microsoft Learn for more information.

View solution in original post

29 REPLIES 29

Hi @Chris90, sorry to hear you're running into this issue! Office Scripts that are stored in SharePoint can be run in Power Automate if you use the "run script from SharePoint library" action, which it looks like you're doing. Would you be able to share a screenshot of what parameters you're using for the run script action and where you're encountering this error? That will help us identify where the error could be coming from!

Hi @MichelleRanMSFT yes of course:

 

Chris90_0-1685690574863.png

Some seconds after adding all of the parameters I get the 502 error message and I can't save my flow. It is the 3rd step of the flow:

 

1. Trigger: If an element or file was changed

2. Action: Copy the file

3. Run script from SharePoint library

 

The copied file and the script are stored in the same folder.

Thanks for reporting this issue. We're looking into it now. Once we have a workaround for you, I'll be back in touch.

Thanks for reporting this issue. We're looking into it now. Once we have a workaround for you, I'll be back in touch.

RR-Bobik
Regular Visitor

I'm experiencing the same issue right now. I only have one action in the flow - Run script from SharePoint library.

@Chris90 and @RR-Bobik , can you try again? There was tool update in past days. I just verified, both "Run Script" and "Run Script from Sharepoint library (preview)" worked fine.

 

liwei1_0-1686153720944.png

 

RR-Bobik
Regular Visitor

@liwei1 still not working for me...

RRBobik_0-1686218814349.png

 

hi, @RR-Bobik sorry for the inconvenience. Did you select script file (*.osts)? from a team shared folder or your onedrive folder? Thanks

it's from a team shared folder.

Would you be able to share a screenshot of what parameters you're using for the run script action and where you're encountering this error? That will help us identify where the error could be coming from!

@liwei1 I just made a ts file and renamed it to osts. Is there another way how to make an osts file?

Please try to create a new osts file from excel Office Scripts in Excel - Office Scripts | Microsoft Learn

 

To add an osts in a sharedpoint, (1) create an osts file from UI (Excel -> Automate), then save it to a sharepoint folder (by default it saves to the default folder); (2) copy existing osts from the default folder to a sharepoint folder. The default folder is in OneDrive for Business, OneDrive, Documents/Office Scripts/yourscript.osts (see my screen shot). you can access the default folder from OneDrive as well.

 

To run the flow, you can select osts from the default folder, or any accessible sharepoint folders. Can you run the script in the default folder? and then copy the same script to the sharepoint folder, and run again? I would like to know the issue from the script or from the sharepoint folder? Thanks.

 

in default folder

liwei1_1-1686584402607.png

from a sharepoint folder

liwei1_3-1686584562056.png

 

 

 

 

 

Office Scripts code is written in Typescript. But the .osts file is actually a JSON file and the script code itself is just a string property of that JSON. So simply renaming a .ts file to .osts won't work because it won't be in the expected JSON format.

Thanks @liwei1 , I can confirm that in power automate I can define the process step without any issues. I just have a run time issue, but it might be caused by the amount of data. Is there a hint how to deal with that? Especially in case of remove rows based on filter results?

Hi @Chris90, what specific runtime issue are you encountering?

 

If you're encountering a timeout issue, which can indeed be caused by processing a large amount of data, you should either optimize your script or split your workflow into multiple run script calls: Platform limits and requirements with Office Scripts - Office Scripts | Microsoft Learn

 

It would also help if you shared your script code!

Hi @MichelleRanMSFT indeed a timout in regards of the platform limits if I run the script manually. I already tried to reduce the workload by repeating the steps for each filter criteria.

 

That's the script code:

function main(workbook: ExcelScript.Workbook) {
    let currentTable = workbook.getTable("Merge4_MAIN___TEXT___UOM___EAN___SUPPLY");

    currentTable.getAutoFilter().clearCriteria();
    
    let selectedSheet = workbook.getWorksheet('Material Master Data Report');
    selectedSheet.getRange("J:N")
        .delete(ExcelScript.DeleteShiftDirection.left);
    selectedSheet.getRange("P:R")
        .delete(ExcelScript.DeleteShiftDirection.left);
    selectedSheet.getRange("Q:R")
        .delete(ExcelScript.DeleteShiftDirection.left);
    selectedSheet.getRange("R:U")
        .delete(ExcelScript.DeleteShiftDirection.left);
    selectedSheet.getRange("T:T")
        .delete(ExcelScript.DeleteShiftDirection.left);
    selectedSheet.getRange("U:W")
        .delete(ExcelScript.DeleteShiftDirection.left);
    selectedSheet.getRange("W:X")
        .delete(ExcelScript.DeleteShiftDirection.left);
    selectedSheet.getRange("X:Z")
        .delete(ExcelScript.DeleteShiftDirection.left);
    selectedSheet.getRange("AE:AE")
        .delete(ExcelScript.DeleteShiftDirection.left);
    selectedSheet.getRange("AL:AL")
        .delete(ExcelScript.DeleteShiftDirection.left);
    selectedSheet.getRange("AT:AT")
        .delete(ExcelScript.DeleteShiftDirection.left);
    selectedSheet.getRange("AZ:BH")
        .delete(ExcelScript.DeleteShiftDirection.left);
    selectedSheet.getRange("BG:BS")
        .delete(ExcelScript.DeleteShiftDirection.left);
    selectedSheet.getRange("BP:BU")
        .delete(ExcelScript.DeleteShiftDirection.left);
    selectedSheet.getRange("BQ:CF")
        .delete(ExcelScript.DeleteShiftDirection.left);

    currentTable.getColumnByName("Distribution Channel").getFilter().applyValuesFilter(["02"]);
    let visibleRows2 = currentTable.getRangeBetweenHeaderAndTotal().getVisibleView().getRows()
    let firstVisibleRow2 = visibleRows2[0].getRange().getRowIndex() + 1
    let lastVisibleRow2 = visibleRows2[visibleRows2.length - 1].getRange().getRowIndex() + 1
    selectedSheet.getRange(`${firstVisibleRow2}:${lastVisibleRow2}`).delete(ExcelScript.DeleteShiftDirection.up)
    currentTable.getColumnByName("Distribution Channel").getFilter().clear()
    currentTable.getColumnByName("Distribution Channel").getFilter().applyValuesFilter(["03"]);
    let visibleRows3 = currentTable.getRangeBetweenHeaderAndTotal().getVisibleView().getRows()
    let firstVisibleRow3 = visibleRows3[0].getRange().getRowIndex() + 1
    let lastVisibleRow3 = visibleRows3[visibleRows3.length - 1].getRange().getRowIndex() + 1
    selectedSheet.getRange(`${firstVisibleRow3}:${lastVisibleRow3}`).delete(ExcelScript.DeleteShiftDirection.up)
    currentTable.getColumnByName("Distribution Channel").getFilter().clear()
    currentTable.getColumnByName("Distribution Channel").getFilter().applyValuesFilter(["04"]);
    let visibleRows4 = currentTable.getRangeBetweenHeaderAndTotal().getVisibleView().getRows()
    let firstVisibleRow4 = visibleRows4[0].getRange().getRowIndex() + 1
    let lastVisibleRow4 = visibleRows4[visibleRows4.length - 1].getRange().getRowIndex() + 1
    selectedSheet.getRange(`${firstVisibleRow4}:${lastVisibleRow4}`).delete(ExcelScript.DeleteShiftDirection.up)
    currentTable.getColumnByName("Distribution Channel").getFilter().clear()
    currentTable.getColumnByName("Distribution Channel").getFilter().applyValuesFilter(["05"]);
    let visibleRows5 = currentTable.getRangeBetweenHeaderAndTotal().getVisibleView().getRows()
    let firstVisibleRow5 = visibleRows5[0].getRange().getRowIndex() + 1
    let lastVisibleRow5 = visibleRows5[visibleRows5.length - 1].getRange().getRowIndex() + 1
    selectedSheet.getRange(`${firstVisibleRow5}:${lastVisibleRow5}`).delete(ExcelScript.DeleteShiftDirection.up)
    currentTable.getColumnByName("Distribution Channel").getFilter().clear()
    currentTable.getColumnByName("Distribution Channel").getFilter().applyValuesFilter(["06"]);
    let visibleRows6 = currentTable.getRangeBetweenHeaderAndTotal().getVisibleView().getRows()
    let firstVisibleRow6 = visibleRows6[0].getRange().getRowIndex() + 1
    let lastVisibleRow6 = visibleRows6[visibleRows6.length - 1].getRange().getRowIndex() + 1
    selectedSheet.getRange(`${firstVisibleRow6}:${lastVisibleRow6}`).delete(ExcelScript.DeleteShiftDirection.up)
    currentTable.getColumnByName("Distribution Channel").getFilter().clear()
}

removing columns works fine, just removing filtered rows is causing the timeout.

Given the repetitive logic for removing filtered rows, I think you can split your script into two scripts. First, a script to delete columns:

function main(workbook: ExcelScript.Workbook) {
	let currentTable = workbook.getTable("Merge4_MAIN___TEXT___UOM___EAN___SUPPLY");

	currentTable.getAutoFilter().clearCriteria();

	let selectedSheet = workbook.getWorksheet('Material Master Data Report');
	selectedSheet.getRange("J:N")
		.delete(ExcelScript.DeleteShiftDirection.left);
	selectedSheet.getRange("P:R")
		.delete(ExcelScript.DeleteShiftDirection.left);
	selectedSheet.getRange("Q:R")
		.delete(ExcelScript.DeleteShiftDirection.left);
	selectedSheet.getRange("R:U")
		.delete(ExcelScript.DeleteShiftDirection.left);
	selectedSheet.getRange("T:T")
		.delete(ExcelScript.DeleteShiftDirection.left);
	selectedSheet.getRange("U:W")
		.delete(ExcelScript.DeleteShiftDirection.left);
	selectedSheet.getRange("W:X")
		.delete(ExcelScript.DeleteShiftDirection.left);
	selectedSheet.getRange("X:Z")
		.delete(ExcelScript.DeleteShiftDirection.left);
	selectedSheet.getRange("AE:AE")
		.delete(ExcelScript.DeleteShiftDirection.left);
	selectedSheet.getRange("AL:AL")
		.delete(ExcelScript.DeleteShiftDirection.left);
	selectedSheet.getRange("AT:AT")
		.delete(ExcelScript.DeleteShiftDirection.left);
	selectedSheet.getRange("AZ:BH")
		.delete(ExcelScript.DeleteShiftDirection.left);
	selectedSheet.getRange("BG:BS")
		.delete(ExcelScript.DeleteShiftDirection.left);
	selectedSheet.getRange("BP:BU")
		.delete(ExcelScript.DeleteShiftDirection.left);
	selectedSheet.getRange("BQ:CF")
		.delete(ExcelScript.DeleteShiftDirection.left);
}

Second, a script to apply a single filter and remove the filtered rows:

function main(workbook: ExcelScript.Workbook, filter: string) {
	let currentTable = workbook.getTable("Merge4_MAIN___TEXT___UOM___EAN___SUPPLY");
	let selectedSheet = workbook.getWorksheet('Material Master Data Report');

	currentTable.getColumnByName("Distribution Channel").getFilter().applyValuesFilter([filter]);
	let visibleRows = currentTable.getRangeBetweenHeaderAndTotal().getVisibleView().getRows();
	let firstVisibleRow = visibleRows[0].getRange().getRowIndex() + 1;
	let lastVisibleRow = visibleRows[visibleRows.length - 1].getRange().getRowIndex() + 1;
	selectedSheet.getRange(`${firstVisibleRow}:${lastVisibleRow}`).delete(ExcelScript.DeleteShiftDirection.up);
	currentTable.getColumnByName("Distribution Channel").getFilter().clear();
}

Then you can set up your flow like this (I'm using the OneDrive run script action, but it should work the same for the SharePoint action):

MichelleRanMSFT_0-1686768884018.png

Basically, the idea here is to break up your workflow into multiple calls to the run script action, meaning that it will be less likely to time out.

 

Let me know if that helps or if you have any questions!

Hi @MichelleRanMSFT thanks for the improvements. I still get a time out and the file size is 75mb. If I copy the data and save it as a new file it only has 315kb. Do you have some ideas how to reduce the file size automatically?

 

//edit: Solved it, there were some sheets hidden and I deleted them. Now everything is working. Thanks!

don't know what happend but again the flow doesn't work. I get an error message:

{
  "message": "Graph Item not found, was it unshared or deleted?\r\nclientRequestId: add50282-bd52-4d9a-a1ac-b16215a0a2ec",
  "storageErrorCode": 5
}

 

But running the script manually works - I just added the part of removing all worksheets to just have the relevant one and to remove ~80mb file space?!

function main(workbook: ExcelScript.Workbook) {
  let wsArr = workbook.getWorksheets();
  let wsToKeep = workbook.getWorksheet("Material Master Data Report");
  let currentTable = workbook.getTable("Merge4_MAIN___TEXT___UOM___EAN___SUPPLY");

  currentTable.getAutoFilter().clearCriteria();

  //Loop through all worksheets in the worksheet collection
  for (let i = wsArr.length - 1; i >= 0; i--) {

    //Check if the item in the wsArr collection is equal to the wsToKeep variable
    //Only proceed if not equal to
    if (wsArr[i].getName() != wsToKeep.getName()) {

      //Make the worksheet hidden prior to deletion to remove error risk
      wsArr[i].setVisibility(ExcelScript.SheetVisibility.hidden)

      //Delete the worksheet    
      wsArr[i].delete();
    };

  }

  let selectedSheet = workbook.getWorksheet('Material Master Data Report');
  selectedSheet.getRange("J:N")
    .delete(ExcelScript.DeleteShiftDirection.left);
  selectedSheet.getRange("P:R")
    .delete(ExcelScript.DeleteShiftDirection.left);
  selectedSheet.getRange("Q:R")
    .delete(ExcelScript.DeleteShiftDirection.left);
  selectedSheet.getRange("R:U")
    .delete(ExcelScript.DeleteShiftDirection.left);
  selectedSheet.getRange("T:T")
    .delete(ExcelScript.DeleteShiftDirection.left);
  selectedSheet.getRange("U:W")
    .delete(ExcelScript.DeleteShiftDirection.left);
  selectedSheet.getRange("W:X")
    .delete(ExcelScript.DeleteShiftDirection.left);
  selectedSheet.getRange("X:Z")
    .delete(ExcelScript.DeleteShiftDirection.left);
  selectedSheet.getRange("AE:AE")
    .delete(ExcelScript.DeleteShiftDirection.left);
  selectedSheet.getRange("AL:AL")
    .delete(ExcelScript.DeleteShiftDirection.left);
  selectedSheet.getRange("AT:AT")
    .delete(ExcelScript.DeleteShiftDirection.left);
  selectedSheet.getRange("AZ:BH")
    .delete(ExcelScript.DeleteShiftDirection.left);
  selectedSheet.getRange("BG:BS")
    .delete(ExcelScript.DeleteShiftDirection.left);
  selectedSheet.getRange("BP:BU")
    .delete(ExcelScript.DeleteShiftDirection.left);
  selectedSheet.getRange("BQ:CF")
    .delete(ExcelScript.DeleteShiftDirection.left);
}

 

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 (720)