Hello friends,
New problem that i need your help with.
This is my indata:
#Start=2021-10-20
#ID=1
Values=
1//
2//
3//
4//
5//
#Start=2021-11-20
#ID=2
Values=
13//
52//
32//
84//
65//
In my text file i have much more rows with Start, ID and values it can be up to ID up to 10000.
What i want to do is to select everything between #Start and the last value.
Can i select them and create an arry?
When i have had select thoose data i awant to write that into a excel workbook.
I have the data in a text file.
In the excel i want to structure it up lile
Value Start ID
1 2021-10-20 1
2 2021-10-20 1
3 2021-10-20 1
4 2021-10-20 1
5 2021-10-20 1
13 2021-11-20 2
52 2021-11-20 2
32 2021-11-20 2
84 2021-11-20 2
65 2021-11-20 2
What do you think out there?
/Anders