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
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)
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!!
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”:
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”:
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.