I have a report in which the Detail section is NOT even visible. The report displays a footer section with various sums, counts, etc. grouped by each manager.
I have an unbound text box n the detail section that uses an IIF statement and returns the "Issue Number" of that record if the criteria are met. This text box works fine.
What I want to do is capture in a string variable all of the values this text box returns for this manager, insert a comma between values,
str= str + ", " + [txtIssueNum]
and put the resulting string in a text box in the footer for each manager. The resulting string would be a list of the Issues this manage has due within 45 days (from the IIF text box in the detail), such as;
Due within 45 days for Manager XXXXXX: 3
P182945, N1048576, X12345
I can get the count, but I can't seen to capture the string of the Issue Numbers. In VBA the str variable gets set to "" with each record.
Ideas welcome.
I have an unbound text box n the detail section that uses an IIF statement and returns the "Issue Number" of that record if the criteria are met. This text box works fine.
What I want to do is capture in a string variable all of the values this text box returns for this manager, insert a comma between values,
str= str + ", " + [txtIssueNum]
and put the resulting string in a text box in the footer for each manager. The resulting string would be a list of the Issues this manage has due within 45 days (from the IIF text box in the detail), such as;
Due within 45 days for Manager XXXXXX: 3
P182945, N1048576, X12345
I can get the count, but I can't seen to capture the string of the Issue Numbers. In VBA the str variable gets set to "" with each record.
Ideas welcome.