Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Actually , my reqt is the count can be dynamic , say if count is 5 , then there should be 5 ids in a row.
The input column can have thousands of Ids.
(content in tfileinputdelimited.)
1
2
3
4
5
6
7
8
9
10
should be as
1,2,3,4,5
6,7,8,9,10
Actually , my reqt is the count can be dynamic , say if count is 5 , then there should be 5 ids in a row.
The input column can have thousands of Ids.
1
2
3
4
5
6
7
8
9
10
should be as
1,2,3,4,5
6,7,8,9,10
TRF,
Im not getting your point . how will i build that numeric sequence. Could you get me the component flow which i need to use.
@rhall could you please help me out in detail
Here is what you need.
Maybe there is better solutions but this one works as soon as the input flow has a number of rows multiple of 5.
TRF,
Thank you , but what am expecting .it should work even if there are 12 or 13 or 14 rows . Your solution works only when the row count is divisible by 5.
If the input is
abc1
def3
ghi2
jkq4
aef
yfj
ope
The rows yfj , ope gets ommitted . only abc1,def3,ghi2,jkq4,aef is printed.
Expected output:
abc1,def3,ghi2,jkq4,aef
yfji,ope