Hi Team
Below is the input file.
Test.xlsx (10.6 KB)
Filtering condition:
Remove if Transaction Type-“INT” and “REV_REC”
Currency other than-“USD”
Total Amount-0
Thanks in advance
Likitha
Hi Team
Below is the input file.
Test.xlsx (10.6 KB)
Filtering condition:
Remove if Transaction Type-“INT” and “REV_REC”
Currency other than-“USD”
Total Amount-0
Thanks in advance
Likitha
CurrentRow("Transaction type").toString.Contains("INV") Or CurrentRow("Transaction type").toString.Contains("REV_REC").tostring
Hope it helps!!
=> Use read range workbook activity to read the excel to datatable. Output - dtExcel.
=> Use for each row in datatable activity to iterate the rows in the datatable.
=> Inside for each Insert the If condition and write the below condition.
- Condition - (Currentrow("Transaction type").ToString.Contains("INV")) and (CurrentRow("Transaction type").ToString.Contains("REV_REC")) and (Not (CurrentRow("Currency").ToString.equals("USD"))) and (Cint(CurrentRow("Total Amount")).equals(0))
=> In then block give the remove data row activity.
=> Use write Range workbook activity to write the datatable to excel.
Check the below image for better understanding:
Hope it helps!!
Hello @vinjam_likitha
I have attached the Main.Xaml File, You can follow the steps as in:
Main.xaml (9.7 KB)
I hope it helps.
Regards;)
Check the below reply for process and condition
Hope it helps!! @vinjam_likitha
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.