Hi,
I have the following data:
"header1";"header2";"header3";"header4";"data1";"data2";"1Lnum1";"num2";"num3";"num4";"1Lnum5";"num6";"num7";"num8"
I wan the final output to be:
"header1","header3","header4"
"1Lnum1.num2","num3","num4"
"1Lnum5.num6","num7","num8"
In summary, I want to merge all the data under header1 and header2 with a dot in between and delete all the unnecessary data (data1,data2) in between the last header and the first "1L data. I hope I am clear with my problem.
I have the following data:
"header1";"header2";"header3";"header4";"data1";"data2";"1Lnum1";"num2";"num3";"num4";"1Lnum5";"num6";"num7";"num8"
I wan the final output to be:
"header1","header3","header4"
"1Lnum1.num2","num3","num4"
"1Lnum5.num6","num7","num8"
In summary, I want to merge all the data under header1 and header2 with a dot in between and delete all the unnecessary data (data1,data2) in between the last header and the first "1L data. I hope I am clear with my problem.