DeePak
DeePak

Reputation: 145

Get information horizontal in Report Footer

I have a information like this in the details section

S. No Pro. Code Qty 1. A2509. 10 2. C9809. 5 3. D9809. 7

When I bring this field in the report footer,I am getting only the first field.

Is it possible to bring information like this in the report Footer?

A2509,C9809,D9809

Upvotes: 0

Views: 14

Answers (1)

TheOne__
TheOne__

Reputation: 426

Try with shared variables:

Create a formula like this and set it after details section:

  • Shared StringVar Product; Product:= {Table1.YourField}; ""

On report footer put this:

  • Shared StringVar Product;

Or you could create a sub-report:

  • Set your field on details and supress all other.

Upvotes: 1

Related Questions