Hello All
I seek help on this. I need the the workflow to highlight the blank cells in column B:
the workflow will first filter status and return all the blank cell in B:
the bot will then highlight the “blank cell”.
would like to seek help, if it is possible to have this done? TIA
lrtetala
(Lakshman Reddy)
September 13, 2024, 5:38am
3
Anil_G
(Anil Gorthi)
September 13, 2024, 6:08am
4
@f5f191b0815b26e83996fd67f
Use excel file activity
For each row in excel
If condition to check if status is blank currentRow("Status").ToString.Equals("")
On then side use set range color(this is classic activity) or can use format cells as well
Cheers
For the range what should I put?
Anil_G
(Anil Gorthi)
September 13, 2024, 6:22am
6
@f5f191b0815b26e83996fd67f
For range in for loop use excel.sheet("Sheetname")
Cheers
But I only wan to highlight status column that.
When I use the excel sheet range. It highlight the whole excel sheet…
Hi, @f5f191b0815b26e83996fd67f
Code:
Rowindex is a integer
Result:
Anil_G
(Anil Gorthi)
September 13, 2024, 6:49am
9
@f5f191b0815b26e83996fd67f
if youa re talking about using in set range color then use
CurrentRow.ByField("ColumnName").Address
if inside format cells
Excel.Sheet("SheetName").Range(CurrentRow.ByField("ColumnName").Address)
Hope this helps
cheers
system
(system)
Closed
September 16, 2024, 6:49am
10
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.