Extract rows items from Column data

Hi All,

For my column name “Parameters” , I am getting in following below value for each row. How can I extract both the datas separately. Each row has multiple values as 1, 2 etc
I want to extract 1. “As of” value and 2 "Subsdiary Context: value

@dutta.marina try to split each row by environment.newline

currentRow.split(environment.newline)

Hi @dutta.marina

Can you try like below

Regards,

Hii,@dutta.marina

under for each data row item use this one
currentRow(“Parameter”).ToString.Split({Environment.NewLine}, StringSplitOptions.RemoveEmptyEntries)

hope this will be helpful!!

@lrtetala

I have read the excel in get Transaction data. If I want to use this way how can i do ?

The value of str_reportParameter is coming as:I want to get the value of 1 “As of” 2. “Susbdiary Context”:

@Somanath1

I have read the excel in get Transaction data. If I want to use this way how can i do ?

The value of str_reportParameter is coming as:I want to get the value of 1 “As of” 2. “Susbdiary Context”:

@dutta.marina

You need to give like below

Regards,

1 Like

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