himanshushekhar8
New Member
- Joined
- Apr 19, 2018
- Messages
- 1
I have a set of numbers against dates. That sequence goes 0,0,0,0,0,.....,0,1,2,3,4,5,5,5,5,5..... And so on.
I first wanted to extract the date at 1 and 4 only then at the next occurrence of 6 to whatever the number before repetition. But I was unsuccessful. If I could get help on this, I'd be greatful.
My second way around was that I tried getting the output of
0,0,0,0,0,.....,0,1,1,1,1,2,2,2,2,2..... Against
0,0,0,0,0,.....,0,1,2,3,4,5,5,5,5,5.....
So that I could use match & index.
The table is live and the size of table is 4X6900. Also, the place of occurrence of 1 or for that matter any number is not fixed.
I first wanted to extract the date at 1 and 4 only then at the next occurrence of 6 to whatever the number before repetition. But I was unsuccessful. If I could get help on this, I'd be greatful.
My second way around was that I tried getting the output of
0,0,0,0,0,.....,0,1,1,1,1,2,2,2,2,2..... Against
0,0,0,0,0,.....,0,1,2,3,4,5,5,5,5,5.....
So that I could use match & index.
The table is live and the size of table is 4X6900. Also, the place of occurrence of 1 or for that matter any number is not fixed.