I would like to show my data in a single field:
The data looks like:
Team Application
A MS Word
B MS Excel
A MS Access
C Outlook
B Internet Explorer
I would like it to look like:
A: MS Word, MS Access
B: MS Excel, Internet Explorer
C: Outlook
Currently I have in a Sub-Report:
Details:
WhilePrintingRecords;
StringVar ConCatApp;
ConCatApp:= ConCatApp + Trim({Application.applicationName}) + ", "
Report Footer:
(WhilePrintingRecords;
StringVar ConcatApp;
{@ConcatApp})
This returns the last applicationName twice so that I get:
A: MS Word, MS Access, MS Access
B: MS Excel, Internet Explorer, Internet Explorer
C: Outlook, Outlook
I'm not so great with Basic, so I'm not quite sure where I am messing this up. Any help?
The data looks like:
Team Application
A MS Word
B MS Excel
A MS Access
C Outlook
B Internet Explorer
I would like it to look like:
A: MS Word, MS Access
B: MS Excel, Internet Explorer
C: Outlook
Currently I have in a Sub-Report:
Details:
WhilePrintingRecords;
StringVar ConCatApp;
ConCatApp:= ConCatApp + Trim({Application.applicationName}) + ", "
Report Footer:
(WhilePrintingRecords;
StringVar ConcatApp;
{@ConcatApp})
This returns the last applicationName twice so that I get:
A: MS Word, MS Access, MS Access
B: MS Excel, Internet Explorer, Internet Explorer
C: Outlook, Outlook
I'm not so great with Basic, so I'm not quite sure where I am messing this up. Any help?