I have an excel workbook, Please note it’s a Read Only file. I want to filter by two columns.
1 Column E contains CL and Column A font color is black.
please see sample file below and expected output.
Thanks
I have an excel workbook, Please note it’s a Read Only file. I want to filter by two columns.
1 Column E contains CL and Column A font color is black.
please see sample file below and expected output.
Thanks
@Ogunleye_Solomon ,
Hey Please check out tis thread .This might help you
Regards,
Drag and drop a Read Range activity onto your workflow. Configure it to read the desired range from the Excel file and store the data in a DataTable variable called inputDataTable
.
Add a For Each Row activity and set the inputDataTable
as the source.
Inside the For Each Row loop, add a Get Row Item activity. Specify the column index or column name, depending on your requirement, to retrieve the cell value and color information.
To retrieve the cell value, assign the item
property of the Get Row Item activity to a variable.
To retrieve the cell color, use the following steps:
a. Add an Excel Application Scope activity.
b. Within the Excel Application Scope, use the Read Cell Color activity to read the color of the desired cell. Provide the workbook path, sheet name, and cell reference as inputs, and assign the output to a variable.
Use conditional logic to check the color value and perform the desired actions based on the color.
Hope it helps!!
It confusing.
Kindly assist show a sample out put with the input provided.
Our consideration here is Text colour (font colour) and not the Cell Back colour (Fill colour)
I hope it helps!!