Ewriting to a new excel file in blue prism

In Blue Prism, you can write data to a new Excel file using the Excel Write activity. Here's a step-by-step guide:

Prerequisites:

  1. Make sure you have the Excel Write activity installed in your Blue Prism environment.
  2. Create a new Excel file in the desired location.

Steps:

  1. Drag and drop the Excel Write activity from the Utility folder to your process flowchart.
  2. Double-click the Excel Write activity to open its properties.
  3. In the Excel Write activity properties, enter the following:
    • File Path: Enter the path to the new Excel file you created. For example, C:\Users\username\Documents\NewFile.xlsx.
    • Sheet Name: Enter the name of the sheet where you want to write data. For example, Sheet1.
    • Range: Enter the range of cells where you want to write data. For example, A1:C3.
  4. In the Data tab, select the data you want to write to the Excel file. You can use a Data Item or a Collection as the data source.
  5. Click OK to close the Excel Write activity properties.
  6. Run the process to write data to the new Excel file.

Tips:

Here's an example of how the Excel Write activity properties might look:

File Path: C:\Users\username\Documents\NewFile.xlsx
Sheet Name: Sheet1
Range: A1:C3
Data: [Data Item: MyData]

In this example, the Excel Write activity will write the data from the MyData data item to the Sheet1 sheet in the NewFile.xlsx file, starting from cell A1 and ending at cell C3.