so may i know how to create if condition… in my workflow?
You can try this approach
If you want to ignore the case of the Character then
Row("id").ToString.StartsWith("D", StringComparison.InvariantCultureIgnoreCase)
1 Like
thank u so much kumar… will try this and will lt u know
1 Like
1 Like
Hey!
Try this:
CurrentRow(0).ToString.Trim.StartsWith("D") or CurrentRow(0).ToString.Trim.StartWith("d")
Regards,
NaNi
1 Like
thanks nani
thanks vaibhav
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.