Add a new value to a data table column

Hi everyone, does anybody can help me?

I have a string value “abcd” and a data table variable with 3 columns “column1, column2 and column3” and 10 rows with information so I want to add the string value “abcd” to a new column for each row the string value it will be always the same, which is the best way to solve this ??

@marquezd

Welcome to the community

  1. Add data column activity and add NewColumn
  2. Assign activitydt.Columns("NewColumn").Expression = "'ABCD'"

cheers

Hi,

Another approach: Can you try to use DefaultValue property in AddDataColumn activity as the following?

Regards,

@Yoichi

Default value will support for new rows but not for existing rows I believe

cheers

Hi @Anil_G

Can you check the following image?

Regards,

1 Like

Tnks, it works I appreciate your help :wave:

2 Likes

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