i have a condition where in a column if there is false the cells has be in red in colour . what condition do i give in if condition?
Hi @poojaskyrathore, if you’re asking for the condition to check if cell has ‘False’, please use below.
If you’re looping through each row in DataTable using ‘For Each Row in Data Table’ activity, you can use CurrentRow.Item(“YourColumnName”).ToString.ToLower.Equals(“false”). And, if you’re looking for how to color the cell, you may follow the steps provided by Sudharsan above.