8/22/2025 10:27:37 PM
|
|
slxdeveloper.com Community Forums |
|
|
|
The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
Forum to discuss usage & tips for SalesLogix controls and other 3rd party ActiveX controls. View the code of conduct for posting guidelines.
|
|
|
|
Display data in datagrid horizontally instead of vertically
Posted: 23 Jul 08 11:55 AM
|
Hi all.
Currently we have a data grid that displays like this:
YEAR-------SALES 2005--------50.00 2006--------70.00 2007--------80.00
Is there a way to display like this:
YEAR--2005-----2006-----2007 SALES-50.00----70.00----80.00
Thank you in advance! |
|
|
|
Re: Display data in datagrid horizontally instead of vertically
Posted: 23 Jul 08 12:59 PM
|
There are a few approaches to doing this.
1) Create a new recordset with the appropriate fields and populate as needed from the vertical data, then bind that to the grid. 2) Rotate the data using queries. Here is something that will help with that: http://support.microsoft.com/kb/175574 This becomes even easier if you're on SQL2005 where you can do PIVOT queries (PIVOT would likely be rejected by the SLX Provider so you'd need to wrap that in a view).
-Ryan |
|
|
| |
|
You can
subscribe to receive a daily forum digest in your
user profile. View the site code
of conduct for posting guidelines.
Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
|
|
|
|
|
|
|
|