when i run a report my record is displayed once per item. Can i force it to display multiple times depending upon the value of a field. I have 3 revenue fields and want the record displayed once per field if there is a value in it
Right click the section that you're displaying the data in, presumably the Details, and select insert section below two times to create additional sections for display.
Repeat the required fields in each section.
Now you can conditionally display each section by right clicking each section and selecting Section Expert.
Place something like the following in the X 2 next to Suppress for each section:
isnull({table.field1})
or
{table.field1} = 0
section B would have:
isnull({table.field2})
or
{table.field2} = 0
Replace with the appropriate field names to check for not having a value. I assumed that this field is numeric, adjust accordingly if a string)
As Dave pointed out, your post lacks technical information, so if this doesn't help you, please post technical information.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.