Excel Activities for Processing and Filtering

Hi everyone, i’d like to share my new custom activity. Feel free to use it and ask any questions

image

Main Functions include:

1. Batch Delete Rows In Excel - delete specified rows

Inputs
a. In_rowNumbersToDelete (string) - the row numbers to delete (separated by comma)
a. .e.g. “1,3,5,7,9”
b. In_excelPath (string) – excel path
c. In_sheetName (string) – sheet name

2. Batch Highlight Rows In Excel - highlight specified rows
a. In_rowNumbersToHighlight (string) - the row numbers to highlight (separated by comma)
e.g. “1,3,5,7,9”
b. In_excelPath (string) – excel path
c. In_sheetName (string) – sheet name

3. Filter Column By Values- filter by multiple critieria

a. in_columnLetterOrNameToFilter (string) - can be the column letter “A”, or the name of the column header “e.g. Heading5”, if you input “Heading5” the robot will find the column where header = “Heading5”
b. In_excelPath (string) – excel path
c. In_sheetName (string) – sheet name
d. In_headerRow (int) – the row where the header is at ( default = 1)
e. in_filterCriteria (String) - values to filter (separated by comma) (<> means not equal to)
Example 1 . AA,AB means filter values = AA,AB
Example 2. <>AA,<>AB means filter values = not AA and not AB


image

4. Remove Leading Zeroes From Columns
Removes all leading zeroes from text in a column/columns
Inputs
a. in_columnLettersToProcess (string) - the column letters to process (separated by comma)
a. .e.g. “A,B,C”
b. In_excelPath (string) – excel path
c. In_sheetName (string) – sheet name

5. Convert Columns Format To Text
Converts whole column format to text format
Input
a. in_columnLettersToProcess (string) - the column letters to process (separated by comma)
a. .e.g. “A,B,C”
b. In_excelPath (string) – excel path
c. In_sheetName (string) – sheet name

====================================================
Use case - delete all rows where Heading2 = Orange
image
Steps

  1. Download my other library AppendRowNumberColumnToDt.Activities (you can find it in the Package Manager)
  2. Read excel range into variable called “dt”
  3. Use “Append Row Number Column”
  4. Loop over dt and add the rowNumber of rows where Heading2=Orange to a list
  5. Call Batch Delete Rowsactivity In Excel with the list created above

    image
4 Likes

Hello @jack.chan!

It seems that you have trouble getting an answer to your question in the first 24 hours.
Let us give you a few hints and helpful links.

First, make sure you browsed through our Forum FAQ Beginner’s Guide. It will teach you what should be included in your topic.

You can check out some of our resources directly, see below:

  1. Always search first. It is the best way to quickly find your answer. Check out the image icon for that.
    Clicking the options button will let you set more specific topic search filters, i.e. only the ones with a solution.

  2. Topic that contains most common solutions with example project files can be found here.

  3. Read our official documentation where you can find a lot of information and instructions about each of our products:

  4. Watch the videos on our official YouTube channel for more visual tutorials.

  5. Meet us and our users on our Community Slack and ask your question there.

Hopefully this will let you easily find the solution/information you need. Once you have it, we would be happy if you could share your findings here and mark it as a solution. This will help other users find it in the future.

Thank you for helping us build our UiPath Community!

Cheers from your friendly
Forum_Staff

New version released:

new function:

  1. Batch Copy Row From One excel to another
    a. In_rowNumbersToCopy (string) - the row numbers to copy separated by comma)
    a. .e.g. “1,3,5,7,9”
    b. In_sourcePath (string) – source excel path to copy from
    c. In_sourceSheetName (string) – source sheet name to copy from
    d. In_destPath (string) – destination excel path to copy to (can be the same as source path)
    e. In_destSheetName (string) – destination sheet name to copy to
    f. in_deleteSourceRowsAfterCopy (Boolean) – If True, it will delete the copied rows from source sheet

Example
Copy rows 2,4,6,7, from D:\test\a.xlsx to D:\test\a.xlsx (same file) from Sheet1 to Sheet2 then delete the rows from sheet1

image

Before run

After
image