Challenge5

Hi, can someone help me, how to write the expression in (If condition). We need to write like whether that cell consists of specific string or not. Below is the image reference.

@Pushpendra_kowthavarapu

currentrow(7).tostring.tolower.contains(“completed”)

7 is the column index

If we have to write doesn’t contains, how to write that.

@Pushpendra_kowthavarapu

you can use not at starting for doesn’t contains

not CurrentRow(7).ToString.ToLower.Contains(“completed”)

1 Like

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