Hi,
I have the following report structure.
Detail Section: Field Names with Data are-
Name ID Holidays
A 1 1/1/2014
A 1 1/2/2014
A 1 1/7/2014
B 2 1/2/2014
C 3 1/2/2014
C 3 1/5/2014
In Detail-B section I have an @Array
@Array - Formula
WhilePrintingrecords
Numbervar Count;
Count+Count+1;
I Tried inserting a formula in the detail section with @ArrayOutPut reading;
if @Array=1, then "("+[Name]+","+[ID]+","+[Holidays], but the result is not returning as expected below.
EXPECTED OUTPUT- I need another array (@ArrayOutPut) to display the following data in following pattern-
@ArrayOutPut-
(A, 1, 1/1/2014, 1/2/2014, 1/7/2014)
(B, 2, 1/2/2014)
(C, 3, 1/2/2014, 1/5/2014)
I am not sure how to proceed further, please help or share any link for the support.
I have the following report structure.
Detail Section: Field Names with Data are-
Name ID Holidays
A 1 1/1/2014
A 1 1/2/2014
A 1 1/7/2014
B 2 1/2/2014
C 3 1/2/2014
C 3 1/5/2014
In Detail-B section I have an @Array
@Array - Formula
WhilePrintingrecords
Numbervar Count;
Count+Count+1;
I Tried inserting a formula in the detail section with @ArrayOutPut reading;
if @Array=1, then "("+[Name]+","+[ID]+","+[Holidays], but the result is not returning as expected below.
EXPECTED OUTPUT- I need another array (@ArrayOutPut) to display the following data in following pattern-
@ArrayOutPut-
(A, 1, 1/1/2014, 1/2/2014, 1/7/2014)
(B, 2, 1/2/2014)
(C, 3, 1/2/2014, 1/5/2014)
I am not sure how to proceed further, please help or share any link for the support.