If my value starts with d in excel then it has to execute one workflow or else it has to execute else workflow

Hi @sathish_Kumar6

You can try this approach

image

If you want to ignore the case of the Character then

Row("id").ToString.StartsWith("D", StringComparison.InvariantCultureIgnoreCase)
1 Like