I'm needing when a subreport has more than one value, to be able to put them as
value 1/value2/value3 rather than each one as a separate line in detail section
Any suggestions?
I'm needing when a subreport has more than one value, to be able to put them as
value 1/value2/value3 rather than each one as a separate line in detail section
Any suggestions?

This month, every Windows Secrets subscriber can download a one-chapter excerpt of Windows 7: The Missing Manual.Windows 7: The Missing Manual provides valuable information to help you overcome these difficulties in learning a new operating system. Subscribe today to download your free excerpt.
If you want to display them in separate fields, try using a crosstab query as the recordsource for your subreport. Look in the Solutions.mdb that comes with Access (Solutions9.mdb for Access 2000) and select the "Create advanced reports" selection for one example.
If you want to create a concatenated string (like "Value1/Value2/Value3"), that's a different thing entirely and could most easily be done with a function.
Charlotte
yes, I'm looking for the ability to create a concatinated answer.
Lexi
Then you can use a subreport based on a crosstab query, assuming that you have a limited number of possible values. In the subreport's detail section, put a textbox in that is bound to an expression something like this:
=[strValue1] & ("/" + [strValue2]) & ("/" + [strValue3])
... where [strValue1], etc, are column headings in the crosstab query. You actually reference the underlying field names here, not controls, so be sure you don't have any controls named [strValue1]...etc. The use of + operators assumes that some of the crosstab fields are going to return nulls, which will return a null for that part of the expression and not print extra slashes.
Make sure that you use the columnheadings property of the crosstab query to specify ALL the field names that might occur, since you can only bind a crosstab-based subform or report if the columnheadings have been specified.
If you may have any number of variations on the fields, post again and I'll tell you some ways to deal with that.
Charlotte