How to add true in a column

I have a input

columns are
column1,column2,column3,column4,column5
xyz,2.5,0.05,4.5,0.05
abc,3.5,0.04,3.5,0.05

what we need is
if column3=column5 then true under column6
and if column2=column4 then true under column6

how can we achieve this (I do not have excel) so i am using notepad

use generate datatable from text activity

follow my settings and click preview to see the result

now just use add data column to add column 6
then use for each row in datatable to loop datatable and check columns 2,3,4,5 to update column 6 accordingly

at the end use write csv activity to write datatable to text file (you dont need excel to use CSV activities as CSV is just a text file)

Hi,

Can you try the following sample?

dt.Columns("Column6").Expression = "IIF([column3]=[column5] Or [column2]=[column4],'True','')"

Sample20240116-1.zip (3.0 KB)

Regards,

Thank you for your help but I am getting this error

Hi,

For now, Can you clear either of the field, unfocus it , then re-input the expression?

Regards,

Thank you very much :pray:

1 Like

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