If i am reading a column from Excel

If I am reading a column value from Excel with ( Read column) activity but if the total count of that column contains(0) then I need to add 1. i am doing this in if else conditions so there will be multiple conditions, I want to write that only in one (if condition) , not wanted to use multiple if’s for it.

You’ll have to describe the conditions for us.

Currently i am doing: Column_variable.count.equals(10) then Assigning in another variable = Column_variable + 1 in multiple if else condition but do not want that. For eg (10,20,30,40,50 and so on need to add +1 if the total count contains 0.

Condition: if column_variable.count mod 10 = 0 then add 1

Thanks for the solution:)

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.