Data Display Question
Is it possible to have a report builder report display the data in columns
(horizontally) rather than rows? I want to output three sets of values like
this:
January February March
100% 100% 50%
and I need to get both the month and the percentage from the sql statement.
Value formatting isn't a problem, I can handle that already, but I need to
have the display show like this if possible. Thanks.
Tom
(horizontally) rather than rows? I want to output three sets of values like
this:
January February March
100% 100% 50%
and I need to get both the month and the percentage from the sql statement.
Value formatting isn't a problem, I can handle that already, but I need to
have the display show like this if possible. Thanks.
Tom
This discussion has been closed.
Comments
You can have RB traverse from left to right by creating multiple columns and
setting the DetailBand.ColumnTraversal to ctLeftToRight. This will print
each new traversed record in the next column on the page.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Tom