Hey all, could use help! Thanks ahead of time. Using CRYSTAL XI.
(1) SAMPLE DATABASE RECORDS/FIELDS:
VISITOR DEPARTMENTS (string field w/ comma separators)
------- ----------------------------------------------
Jane HR,IS,Finance
Bob IS,Marketing,CallCenter
Pat Printing,CallCenter,IS,Audits
(2) REPORT GOAL: Display Total Visitors (count) for each UNIQUE Department, and list the Visitors.
(3) REPORT DESIGN:
DEPT TOTAL VISITOR
----------- -------- -------
HR 1
Jane
IS 3
Jane
Bob
Pat
Finance 1
Jane
Marketing 1
Bob
CallCenter 2
Bob
Pat
Printing 1
Pat
Audits 1
Pat
(4) SOLUTION?
(A) I think the best method may be to create a GROUP (DEPT), Running Totals (at group level), and display the list of Visitors in Detail section.
(B) Any suggestions on how to do this? SPLIT the DEPARTMENTS string field into an ARRAY of Unique Departments (do this via a DEPARTMENT Formula)? Then Group on this DEPARTMENT formula?
Would need dynamic functions (not Static Variables) because there will be a long list of departments.
(Was hoping to combine methods suggested in Threads - "Collecting unique values for a group", "Need to split string so user can enter parameter on the split value", etc).
(1) SAMPLE DATABASE RECORDS/FIELDS:
VISITOR DEPARTMENTS (string field w/ comma separators)
------- ----------------------------------------------
Jane HR,IS,Finance
Bob IS,Marketing,CallCenter
Pat Printing,CallCenter,IS,Audits
(2) REPORT GOAL: Display Total Visitors (count) for each UNIQUE Department, and list the Visitors.
(3) REPORT DESIGN:
DEPT TOTAL VISITOR
----------- -------- -------
HR 1
Jane
IS 3
Jane
Bob
Pat
Finance 1
Jane
Marketing 1
Bob
CallCenter 2
Bob
Pat
Printing 1
Pat
Audits 1
Pat
(4) SOLUTION?
(A) I think the best method may be to create a GROUP (DEPT), Running Totals (at group level), and display the list of Visitors in Detail section.
(B) Any suggestions on how to do this? SPLIT the DEPARTMENTS string field into an ARRAY of Unique Departments (do this via a DEPARTMENT Formula)? Then Group on this DEPARTMENT formula?
Would need dynamic functions (not Static Variables) because there will be a long list of departments.
(Was hoping to combine methods suggested in Threads - "Collecting unique values for a group", "Need to split string so user can enter parameter on the split value", etc).