Lower case output in c#

Hi Team,

how to convert the output data table text string to .lower case letter after read the row data in excel?

i tried .ToLower() but have error “InvalidLValueExpression”

@balaraj.pubalan

  1. Add a “For Each Row” activity and set the “TypeArgument” property to System.Data.DataRow to loop through each row.
  2. Inside the “For Each Row” activity, add an “Assign” activity to convert the “DateColumn” value to lowercase:

Assign activity:
row(“DateColumn”) = row(“DateColumn”).ToString().ToLower()

Hi @balaraj.pubalan

Try this

LCase(kwKeyword)

1 Like

Hi,

Can you try to set just kwKeyword in the Text property?

Then use the assign activity as the following.

image

Regards,

1 Like

Have error Lcase does not exist

hope it works

Regards,

1 Like

Thanks man…this works…i just curious can assign back the same variable or not :slight_smile,so it possible also…Thanks for the knowledge share :slight_smile: :slight_smile: :slight_smile:

1 Like

Thanks…yes…it works after assign it back. :slight_smile:

1 Like

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