Hello everyone,
I would like to reform a column by keeping the characters before the first “’-”. If the line does not include “-” I do not change anything.
Can you help me ?
Look at the example
Thank !
Hello everyone,
I would like to reform a column by keeping the characters before the first “’-”. If the line does not include “-” I do not change anything.
Can you help me ?
Look at the example
Thank !
assign
CurrentRow("INPUT") = CurrentRow("INPUT").ToString.Split("-"c)(0)
in foreach row loop
input
output
Thank so much !
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.