Hi everyone,
I have 2 problems:
-
I’m trying to filter through all processes and kill a specific process (internet explorer)
for this I used this function in the past. It worked in this workflow too for a while, but now it returns an error for no reason. (SOLVED: use “system.diagnostics.process.getprocessbyname()” instead of only “process.getprocessbyname()” if “process” isn’t recognized by Uipath) -
I’m trying to filter a really big Excel data table as fast as possible.
- have to take values of 2 colums form file_A, sheet_A. Let’s call these Data_A and Data_B.
- then go to file_B filter by Data_A and after that a detailed filtration by Data_B.
- then take the filter result of colum_C to colum_F and copy them to the colums of File_A, sheet_B
I already extracted Data_A and Data_B with a while loop. What I need is a fast method to filter the table.
this is a very simplified version of the task, there is much more to it. But I would be very thankful if someone could help me with this.