Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » BIRT » Crosstab page break down and across(How to page break large crosstab)
Crosstab page break down and across [message #631561] Fri, 08 October 2010 00:29 Go to next message
Chris  is currently offline Chris Friend
Messages: 47
Registered: September 2010
Member
Hi

I want to create a crosstab which will page break both across the table as well as down.

I have followed the crosstab tutorial and created 2 crosstabs on the same report, the first with portrait master page and the second with landscape master page.

The problem is that the report is only 2 pages long, one for each crosstab. However the second one has squashed all the columns onto one landscape page. How can I set it up so that it keeps all the columns as reasonable minimum width, and page breaks as required with the left most column repeating on each page?

Thanks for you help.
<?xml version="1.0" encoding="UTF-8"?>
<report xmlns="http://www.eclipse.org/birt/2005/design" version="3.2.21" id="1">
<property name="createdBy">Eclipse BIRT Designer Version 2.5.2.v20100208 Build &lt;2.5.2.v20100210-0630></property>
<list-property name="userProperties">
<structure>
<property name="name">SalesCube2.Sales Total.x</property>
<property name="type">integer</property>
<property name="isVisible">false</property>
</structure>
<structure>
<property name="name">SalesCube2.Sales Total.y</property>
<property name="type">integer</property>
<property name="isVisible">false</property>
</structure>
<structure>
<property name="name">SalesCube2.Group3.NewTabularHierarchy3.x</property >
<property name="type">integer</property>
<property name="isVisible">false</property>
</structure>
<structure>
<property name="name">SalesCube2.Group3.NewTabularHierarchy3.y</property >
<property name="type">integer</property>
<property name="isVisible">false</property>
</structure>
<structure>
<property name="name">SalesCube2.Sales Total.width</property>
<property name="type">integer</property>
<property name="isVisible">false</property>
</structure>
<structure>
<property name="name">SalesCube2.Sales Total.height</property>
<property name="type">integer</property>
<property name="isVisible">false</property>
</structure>
</list-property>
<property name="SalesCube2.Sales Total.x">280</property>
<property name="SalesCube2.Sales Total.y">32</property>
<property name="SalesCube2.Group3.NewTabularHierarchy3.x">68</property >
<property name="SalesCube2.Group3.NewTabularHierarchy3.y">155</property >
<property name="SalesCube2.Sales Total.width">150</property>
<property name="SalesCube2.Sales Total.height">200</property>
<property name="units">in</property>
<property name="iconFile">/templates/crosstab.gif</property>
<property name="cheatSheet">org.eclipse.birt.report.designer.ui.cheatsheet.crosstab </property>
<property name="layoutPreference">auto layout</property>
<property name="bidiLayoutOrientation">ltr</property>
<property name="imageDPI">96</property>
<data-sources>
<oda-data-source extensionID="org.eclipse.birt.report.data.oda.jdbc" name="Data Source" id="18">
<property name="odaDriverClass">org.eclipse.birt.report.data.oda.sampledb.Driver </property>
<property name="odaURL">jdbc:classicmodels:sampledb</property>
<property name="odaUser">ClassicModels</property>
<property name="OdaConnProfileName"></property>
</oda-data-source>
</data-sources>
<data-sets>
<oda-data-set extensionID="org.eclipse.birt.report.data.oda.jdbc.JdbcSelectDataSet " name="Sales" id="19">
<list-property name="computedColumns">
<structure>
<property name="name">Extended_Price</property>
<expression name="expression">row["QUANTITYORDERED"]*row["PRICEEACH "]</expression>
<property name="dataType">float</property>
</structure>
</list-property>
<list-property name="columnHints">
<structure>
<property name="columnName">STATE</property>
<text-property name="displayName">STATE</text-property>
</structure>
<structure>
<property name="columnName">QUANTITYORDERED</property>
<text-property name="displayName">QUANTITYORDERED</text-property>
</structure>
<structure>
<property name="columnName">PRICEEACH</property>
<text-property name="displayName">PRICEEACH</text-property>
</structure>
<structure>
<property name="columnName">PRODUCTLINE</property>
<text-property name="displayName">PRODUCTLINE</text-property>
</structure>
</list-property>
<structure name="cachedMetaData">
<list-property name="resultSet">
<structure>
<property name="position">1</property>
<property name="name">STATE</property>
<property name="dataType">string</property>
</structure>
<structure>
<property name="position">2</property>
<property name="name">QUANTITYORDERED</property>
<property name="dataType">integer</property>
</structure>
<structure>
<property name="position">3</property>
<property name="name">PRICEEACH</property>
<property name="dataType">float</property>
</structure>
<structure>
<property name="position">4</property>
<property name="name">PRODUCTLINE</property>
<property name="dataType">string</property>
</structure>
<structure>
<property name="position">5</property>
<property name="name">Extended_Price</property>
<property name="dataType">float</property>
</structure>
</list-property>
</structure>
<property name="dataSource">Data Source</property>
<list-property name="resultSet">
<structure>
<property name="position">1</property>
<property name="name">STATE</property>
<property name="nativeName">STATE</property>
<property name="dataType">string</property>
<property name="nativeDataType">12</property>
</structure>
<structure>
<property name="position">2</property>
<property name="name">QUANTITYORDERED</property>
<property name="nativeName">QUANTITYORDERED</property>
<property name="dataType">integer</property>
<property name="nativeDataType">4</property>
</structure>
<structure>
<property name="position">3</property>
<property name="name">PRICEEACH</property>
<property name="nativeName">PRICEEACH</property>
<property name="dataType">float</property>
<property name="nativeDataType">8</property>
</structure>
<structure>
<property name="position">4</property>
<property name="name">PRODUCTLINE</property>
<property name="nativeName">PRODUCTLINE</property>
<property name="dataType">string</property>
<property name="nativeDataType">12</property>
</structure>
</list-property>
<xml-property name="queryText"><![CDATA[SELECT Customers.state,
Orderdetails.quantityOrdered,
Orderdetails.priceEach,
Products.productline
FROM Customers
INNER JOIN Orders
ON Customers.customerNumber = Orders.customerNumber
INNER JOIN Orderdetails
ON Orders.orderNumber = Orderdetails.orderNumber
INNER JOIN Products
ON Orderdetails.productCode = Products.productCode
WHERE Customers.country = 'USA']]></xml-property>
<xml-property name="designerValues"><![CDATA[<?xml version="1.0" encoding="UTF-8"?>
<model:DesignValues xmlns:design="http://www.eclipse.org/datatools/connectivity/oda/design" xmlns:model="http://www.eclipse.org/birt/report/model/adapter/odaModel">
<Version>1.0</Version>
<design:ResultSets derivedMetaData="true">
<design:resultSetDefinitions>
<design:resultSetColumns>
<design:resultColumnDefinitions>
<design:attributes>
<design:name>STATE</design:name>
<design:position>1</design:position>
<design:nativeDataTypeCode>12</design:nativeDataTypeCode>
<design:precision>50</design:precision>
<design:scale>0</design:scale>
<design:nullability>Nullable</design:nullability>
<design:uiHints>
<design:displayName>STATE</design:displayName>
</design:uiHints>
</design:attributes>
<design:usageHints>
<design:label>STATE</design:label>
<design:formattingHints>
<design:displaySize>50</design:displaySize>
</design:formattingHints>
</design:usageHints>
</design:resultColumnDefinitions>
<design:resultColumnDefinitions>
<design:attributes>
<design:name>QUANTITYORDERED</design:name>
<design:position>2</design:position>
<design:nativeDataTypeCode>4</design:nativeDataTypeCode>
<design:precision>10</design:precision>
<design:scale>0</design:scale>
<design:nullability>Nullable</design:nullability>
<design:uiHints>
<design:displayName>QUANTITYORDERED</design:displayName>
</design:uiHints>
</design:attributes>
<design:usageHints>
<design:label>QUANTITYORDERED</design:label>
<design:formattingHints>
<design:displaySize>11</design:displaySize>
</design:formattingHints>
</design:usageHints>
</design:resultColumnDefinitions>
<design:resultColumnDefinitions>
<design:attributes>
<design:name>PRICEEACH</design:name>
<design:position>3</design:position>
<design:nativeDataTypeCode>8</design:nativeDataTypeCode>
<design:precision>15</design:precision>
<design:scale>0</design:scale>
<design:nullability>Nullable</design:nullability>
<design:uiHints>
<design:displayName>PRICEEACH</design:displayName>
</design:uiHints>
</design:attributes>
<design:usageHints>
<design:label>PRICEEACH</design:label>
<design:formattingHints>
<design:displaySize>22</design:displaySize>
</design:formattingHints>
</design:usageHints>
</design:resultColumnDefinitions>
<design:resultColumnDefinitions>
<design:attributes>
<design:name>PRODUCTLINE</design:name>
<design:position>4</design:position>
<design:nativeDataTypeCode>12</design:nativeDataTypeCode>
<design:precision>50</design:precision>
<design:scale>0</design:scale>
<design:nullability>Nullable</design:nullability>
<design:uiHints>
<design:displayName>PRODUCTLINE</design:displayName>
</design:uiHints>
</design:attributes>
<design:usageHints>
<design:label>PRODUCTLINE</design:label>
<design:formattingHints>
<design:displaySize>50</design:displaySize>
</design:formattingHints>
</design:usageHints>
</design:resultColumnDefinitions>
</design:resultSetColumns>
<design:criteria/>
</design:resultSetDefinitions>
</design:ResultSets>
</model:DesignValues>]]></xml-property>
</oda-data-set>
<oda-data-set extensionID="org.eclipse.birt.report.data.oda.jdbc.JdbcSelectDataSet " name="Sales Total" id="69">
<list-property name="columnHints">
<structure>
<property name="columnName">PRODUCTCODE</property>
<text-property name="displayName">PRODUCTCODE</text-property>
</structure>
<structure>
<property name="columnName">SHIPPEDDATE</property>
<text-property name="displayName">SHIPPEDDATE</text-property>
</structure>
<structure>
<property name="columnName">EXTENDED_PRICE</property>
<text-property name="displayName">EXTENDED_PRICE</text-property>
</structure>
</list-property>
<structure name="cachedMetaData">
<list-property name="resultSet">
<structure>
<property name="position">1</property>
<property name="name">PRODUCTCODE</property>
<property name="dataType">string</property>
</structure>
<structure>
<property name="position">2</property>
<property name="name">SHIPPEDDATE</property>
<property name="dataType">date</property>
</structure>
<structure>
<property name="position">3</property>
<property name="name">EXTENDED_PRICE</property>
<property name="dataType">float</property>
</structure>
</list-property>
</structure>
<property name="dataSource">Data Source</property>
<list-property name="resultSet">
<structure>
<property name="position">1</property>
<property name="name">PRODUCTCODE</property>
<property name="nativeName">PRODUCTCODE</property>
<property name="dataType">string</property>
<property name="nativeDataType">12</property>
</structure>
<structure>
<property name="position">2</property>
<property name="name">SHIPPEDDATE</property>
<property name="nativeName">SHIPPEDDATE</property>
<property name="dataType">date</property>
<property name="nativeDataType">91</property>
</structure>
<structure>
<property name="position">3</property>
<property name="name">EXTENDED_PRICE</property>
<property name="nativeName">EXTENDED_PRICE</property>
<property name="dataType">float</property>
<property name="nativeDataType">8</property>
</structure>
</list-property>
<xml-property name="queryText"><![CDATA[select CLASSICMODELS.ORDERDETAILS.PRODUCTCODE,
CLASSICMODELS.ORDERS.SHIPPEDDATE,
CLASSICMODELS.ORDERDETAILS.QUANTITYORDERED
* CLASSICMODELS.ORDERDETAILS.PRICEEACH as "EXTENDED_PRICE"
from CLASSICMODELS.ORDERDETAILS,
CLASSICMODELS.ORDERS
where CLASSICMODELS.ORDERS.ORDERNUMBER
= CLASSICMODELS.ORDERDETAILS.ORDERNUMBER
and CLASSICMODELS.ORDERS.STATUS = 'Shipped']]></xml-property>
<xml-property name="designerValues"><![CDATA[<?xml version="1.0" encoding="UTF-8"?>
<model:DesignValues xmlns:design="http://www.eclipse.org/datatools/connectivity/oda/design" xmlns:model="http://www.eclipse.org/birt/report/model/adapter/odaModel">
<Version>1.0</Version>
<design:ResultSets derivedMetaData="true">
<design:resultSetDefinitions>
<design:resultSetColumns>
<design:resultColumnDefinitions>
<design:attributes>
<design:name>PRODUCTCODE</design:name>
<design:position>1</design:position>
<design:nativeDataTypeCode>12</design:nativeDataTypeCode>
<design:precision>15</design:precision>
<design:scale>0</design:scale>
<design:nullability>Nullable</design:nullability>
<design:uiHints>
<design:displayName>PRODUCTCODE</design:displayName>
</design:uiHints>
</design:attributes>
<design:usageHints>
<design:label>PRODUCTCODE</design:label>
<design:formattingHints>
<design:displaySize>15</design:displaySize>
</design:formattingHints>
</design:usageHints>
</design:resultColumnDefinitions>
<design:resultColumnDefinitions>
<design:attributes>
<design:name>SHIPPEDDATE</design:name>
<design:position>2</design:position>
<design:nativeDataTypeCode>91</design:nativeDataTypeCode>
<design:precision>10</design:precision>
<design:scale>0</design:scale>
<design:nullability>Nullable</design:nullability>
<design:uiHints>
<design:displayName>SHIPPEDDATE</design:displayName>
</design:uiHints>
</design:attributes>
<design:usageHints>
<design:label>SHIPPEDDATE</design:label>
<design:formattingHints>
<design:displaySize>10</design:displaySize>
</design:formattingHints>
</design:usageHints>
</design:resultColumnDefinitions>
<design:resultColumnDefinitions>
<design:attributes>
<design:name>EXTENDED_PRICE</design:name>
<design:position>3</design:position>
<design:nativeDataTypeCode>8</design:nativeDataTypeCode>
<design:precision>15</design:precision>
<design:scale>0</design:scale>
<design:nullability>Nullable</design:nullability>
<design:uiHints>
<design:displayName>EXTENDED_PRICE</design:displayName>
</design:uiHints>
</design:attributes>
<design:usageHints>
<design:label>EXTENDED_PRICE</design:label>
<design:formattingHints>
<design:displaySize>22</design:displaySize>
</design:formattingHints>
</design:usageHints>
</design:resultColumnDefinitions>
</design:resultSetColumns>
<design:criteria/>
</design:resultSetDefinitions>
</design:ResultSets>
</model:DesignValues>]]></xml-property>
</oda-data-set>
<oda-data-set extensionID="org.eclipse.birt.report.data.oda.jdbc.JdbcSelectDataSet " name="ProductLines" id="70">
<list-property name="columnHints">
<structure>
<property name="columnName">PRODUCTLINE</property>
<text-property name="displayName">PRODUCTLINE</text-property>
</structure>
<structure>
<property name="columnName">PRODUCTCODE</property>
<text-property name="displayName">PRODUCTCODE</text-property>
</structure>
</list-property>
<structure name="cachedMetaData">
<list-property name="resultSet">
<structure>
<property name="position">1</property>
<property name="name">PRODUCTLINE</property>
<property name="dataType">string</property>
</structure>
<structure>
<property name="position">2</property>
<property name="name">PRODUCTCODE</property>
<property name="dataType">string</property>
</structure>
</list-property>
</structure>
<property name="dataSource">Data Source</property>
<list-property name="resultSet">
<structure>
<property name="position">1</property>
<property name="name">PRODUCTLINE</property>
<property name="nativeName">PRODUCTLINE</property>
<property name="dataType">string</property>
<property name="nativeDataType">12</property>
</structure>
<structure>
<property name="position">2</property>
<property name="name">PRODUCTCODE</property>
<property name="nativeName">PRODUCTCODE</property>
<property name="dataType">string</property>
<property name="nativeDataType">12</property>
</structure>
</list-property>
<xml-property name="queryText"><![CDATA[select CLASSICMODELS.PRODUCTS.PRODUCTLINE,
CLASSICMODELS.PRODUCTS.PRODUCTCODE
from CLASSICMODELS.PRODUCTS]]></xml-property>
<xml-property name="designerValues"><![CDATA[<?xml version="1.0" encoding="UTF-8"?>
<model:DesignValues xmlns:design="http://www.eclipse.org/datatools/connectivity/oda/design" xmlns:model="http://www.eclipse.org/birt/report/model/adapter/odaModel">
<Version>1.0</Version>
<design:ResultSets derivedMetaData="true">
<design:resultSetDefinitions>
<design:resultSetColumns>
<design:resultColumnDefinitions>
<design:attributes>
<design:name>PRODUCTLINE</design:name>
<design:position>1</design:position>
<design:nativeDataTypeCode>12</design:nativeDataTypeCode>
<design:precision>50</design:precision>
<design:scale>0</design:scale>
<design:nullability>Nullable</design:nullability>
<design:uiHints>
<design:displayName>PRODUCTLINE</design:displayName>
</design:uiHints>
</design:attributes>
<design:usageHints>
<design:label>PRODUCTLINE</design:label>
<design:formattingHints>
<design:displaySize>50</design:displaySize>
</design:formattingHints>
</design:usageHints>
</design:resultColumnDefinitions>
<design:resultColumnDefinitions>
<design:attributes>
<design:name>PRODUCTCODE</design:name>
<design:position>2</design:position>
<design:nativeDataTypeCode>12</design:nativeDataTypeCode>
<design:precision>15</design:precision>
<design:scale>0</design:scale>
<design:nullability>Nullable</design:nullability>
<design:uiHints>
<design:displayName>PRODUCTCODE</design:displayName>
</design:uiHints>
</design:attributes>
<design:usageHints>
<design:label>PRODUCTCODE</design:label>
<design:formattingHints>
<design:displaySize>15</design:displaySize>
</design:formattingHints>
</design:usageHints>
</design:resultColumnDefinitions>
</design:resultSetColumns>
<design:criteria/>
</design:resultSetDefinitions>
</design:ResultSets>
</model:DesignValues>]]></xml-property>
</oda-data-set>
</data-sets>
<cubes>
<tabular-cube name="Sales Cube" id="20">
<property name="dimensions">
<tabular-dimension name="Group" id="28">
<property name="defaultHierarchy">NewTabularHierarchy</property>
<property name="hierarchies">
<tabular-hierarchy name="NewTabularHierarchy" id="29">
<property name="levels">
<tabular-level name="STATE" id="30">
<property name="dataType">string</property>
<property name="columnName">STATE</property>
</tabular-level>
</property>
</tabular-hierarchy>
</property>
</tabular-dimension>
<tabular-dimension name="Group1" id="35">
<property name="defaultHierarchy">NewTabularHierarchy1</property>
<property name="hierarchies">
<tabular-hierarchy name="NewTabularHierarchy1" id="36">
<property name="levels">
<tabular-level name="PRODUCTLINE" id="37">
<property name="dataType">string</property>
<property name="columnName">PRODUCTLINE</property>
</tabular-level>
</property>
</tabular-hierarchy>
</property>
</tabular-dimension>
</property>
<property name="measureGroups">
<tabular-measure-group name="Summary Field" id="38">
<property name="measures">
<tabular-measure name="Extended_Price" id="39">
<expression name="measureExpression">dataSetRow["Extended_Price"]</expression >
<property name="dataType">float</property>
</tabular-measure>
</property>
</tabular-measure-group>
</property>
<property name="dataSet">Sales</property>
</tabular-cube>
<tabular-cube name="SalesCube2" id="71">
<property name="dimensions">
<tabular-dimension name="Group2" id="72">
<property name="isTimeType">true</property>
<property name="defaultHierarchy">NewTabularHierarchy2</property>
<property name="hierarchies">
<tabular-hierarchy name="NewTabularHierarchy2" id="73">
<property name="levels">
<tabular-level name="year" id="74">
<property name="dataType">integer</property>
<property name="dateTimeLevelType">year</property>
<list-property name="attributes">
<structure>
<property name="name">DateTime</property>
<property name="dataType">date-time</property>
</structure>
</list-property>
<property name="columnName">SHIPPEDDATE</property>
</tabular-level>
<tabular-level name="quarter" id="110">
<property name="dataType">integer</property>
<property name="dateTimeLevelType">quarter</property>
<list-property name="attributes">
<structure>
<property name="name">DateTime</property>
<property name="dataType">date-time</property>
</structure>
</list-property>
<property name="columnName">SHIPPEDDATE</property>
</tabular-level>
<tabular-level name="month" id="111">
<property name="dataType">integer</property>
<property name="dateTimeLevelType">month</property>
<list-property name="attributes">
<structure>
<property name="name">DateTime</property>
<property name="dataType">date-time</property>
</structure>
</list-property>
<property name="columnName">SHIPPEDDATE</property>
</tabular-level>
</property>
</tabular-hierarchy>
</property>
</tabular-dimension>
<tabular-dimension name="Group3" id="75">
<property name="defaultHierarchy">NewTabularHierarchy3</property>
<property name="hierarchies">
<tabular-hierarchy name="NewTabularHierarchy3" id="76">
<property name="levels">
<tabular-level name="PRODUCTLINE" id="77">
<property name="dataType">string</property>
<property name="columnName">PRODUCTLINE</property>
</tabular-level>
<tabular-level name="PRODUCTCODE" id="78">
<property name="dataType">string</property>
<property name="columnName">PRODUCTCODE</property>
</tabular-level>
</property>
<property name="dataSet">ProductLines</property>
</tabular-hierarchy>
</property>
</tabular-dimension>
</property>
<property name="measureGroups">
<tabular-measure-group name="Summary Field1" id="79">
<property name="measures">
<tabular-measure name="EXTENDED_PRICE" id="80">
<expression name="measureExpression">dataSetRow["EXTENDED_PRICE"]</expression >
<property name="dataType">float</property>
</tabular-measure>
</property>
</tabular-measure-group>
</property>
<property name="dataSet">Sales Total</property>
<list-property name="dimensionConditions">
<structure>
<list-property name="joinConditions">
<structure>
<property name="cubeKey">PRODUCTCODE</property>
<property name="hierarchyKey">PRODUCTCODE</property>
</structure>
</list-property>
<property name="hierarchy">NewTabularHierarchy3</property>
</structure>
</list-property>
</tabular-cube>
</cubes>
<styles>
<style name="report" id="4">
<property name="fontFamily">sans-serif</property>
<property name="fontSize">10pt</property>
</style>
<style name="crosstab-cell" id="5">
<property name="borderBottomColor">#CCCCCC</property>
<property name="borderBottomStyle">solid</property>
<property name="borderBottomWidth">1pt</property>
<property name="borderLeftColor">#CCCCCC</property>
<property name="borderLeftStyle">solid</property>
<property name="borderLeftWidth">1pt</property>
<property name="borderRightColor">#CCCCCC</property>
<property name="borderRightStyle">solid</property>
<property name="borderRightWidth">1pt</property>
<property name="borderTopColor">#CCCCCC</property>
<property name="borderTopStyle">solid</property>
<property name="borderTopWidth">1pt</property>
</style>
<style name="crosstab" id="6">
<property name="borderBottomColor">#CCCCCC</property>
<property name="borderBottomStyle">solid</property>
<property name="borderBottomWidth">1pt</property>
<property name="borderLeftColor">#CCCCCC</property>
<property name="borderLeftStyle">solid</property>
<property name="borderLeftWidth">1pt</property>
<property name="borderRightColor">#CCCCCC</property>
<property name="borderRightStyle">solid</property>
<property name="borderRightWidth">1pt</property>
<property name="borderTopColor">#CCCCCC</property>
<property name="borderTopStyle">solid</property>
<property name="borderTopWidth">1pt</property>
</style>
</styles>
<page-setup>
<simple-master-page name="Simple MasterPage" id="2">
<property name="type">a4</property>
<property name="orientation">portrait</property>
<page-footer>
<text id="3">
<property name="contentType">html</property>
<text-property name="content"><![CDATA[<value-of>new Date()</value-of>]]></text-property>
</text>
</page-footer>
</simple-master-page>
<simple-master-page name="LandscapeMasterPage" id="130">
<property name="type">a4</property>
<property name="orientation">landscape</property>
</simple-master-page>
</page-setup>
<body>
<grid id="7">
<column id="8"/>
<row id="9">
<cell id="10">
<label id="11">
<property name="fontSize">14pt</property>
<property name="fontWeight">bold</property>
<property name="textAlign">center</property>
<text-property name="text">Cross Tab</text-property>
</label>
</cell>
</row>
</grid>
<extended-item extensionName="Crosstab" extensionVersion="2.5.0" id="40">
<property name="measures">
<extended-item extensionName="MeasureView" id="52">
<property name="measure">Extended_Price</property>
<property name="detail">
<extended-item extensionName="AggregationCell" id="53">
<property name="aggregationOnRow">Group/STATE</property>
<property name="aggregationOnColumn">Group1/PRODUCTLINE</property>
<property name="content">
<data id="54">
<structure name="numberFormat">
<property name="category">Currency</property>
<property name="pattern">$###0.00</property>
</structure>
<property name="textAlign">right</property>
<property name="resultSetColumn">Extended_Price_Group/STATE_Group1/PRODUCTLINE </property>
</data>
</property>
</extended-item>
</property>
<property name="aggregations">
<extended-item extensionName="AggregationCell" id="58">
<property name="aggregationOnColumn">Group1/PRODUCTLINE</property>
<property name="content">
<data id="59">
<structure name="numberFormat">
<property name="category">Currency</property>
<property name="pattern">$###0.00</property>
</structure>
<property name="textAlign">right</property>
<property name="resultSetColumn">Extended_Price_Group1/PRODUCTLINE</property >
</data>
</property>
</extended-item>
<extended-item extensionName="AggregationCell" id="62">
<property name="aggregationOnRow">Group/STATE</property>
<property name="content">
<data id="63">
<structure name="numberFormat">
<property name="category">Currency</property>
<property name="pattern">$###0.00</property>
</structure>
<property name="textAlign">right</property>
<property name="resultSetColumn">Extended_Price_Group/STATE</property >
</data>
</property>
</extended-item>
<extended-item extensionName="AggregationCell" id="64">
<property name="content">
<data id="65">
<structure name="numberFormat">
<property name="category">Currency</property>
<property name="pattern">$###0.00</property>
</structure>
<property name="textAlign">right</property>
<property name="resultSetColumn">Extended_Price</property>
</data>
</property>
</extended-item>
</property>
<property name="header">
<extended-item extensionName="CrosstabCell" id="55">
<property name="content">
<label id="56">
<property name="textAlign">right</property>
<text-property name="text">Order Total</text-property>
</label>
</property>
</extended-item>
<extended-item extensionName="CrosstabCell" id="66">
<property name="content">
<label id="67">
<property name="textAlign">right</property>
<text-property name="text">Total</text-property>
</label>
</property>
</extended-item>
</property>
</extended-item>
</property>
<property name="rows">
<extended-item extensionName="CrosstabView" id="42">
<property name="grandTotal">
<extended-item extensionName="CrosstabCell" id="57">
<property name="content">
<label id="60">
<text-property name="text">Grand Total</text-property>
</label>
</property>
</extended-item>
</property>
<property name="views">
<extended-item extensionName="DimensionView" id="43">
<property name="dimension">Group</property>
<property name="levels">
<extended-item extensionName="LevelView" name="NewLevel View" id="44">
<property name="level">Group/STATE</property>
<property name="member">
<extended-item extensionName="CrosstabCell" id="45">
<property name="content">
<data name="STATE" id="46">
<property name="resultSetColumn">STATE</property>
</data>
</property>
</extended-item>
</property>
</extended-item>
</property>
</extended-item>
</property>
</extended-item>
</property>
<property name="columns">
<extended-item extensionName="CrosstabView" id="47">
<property name="grandTotal">
<extended-item extensionName="CrosstabCell" id="61">
<property name="content">
<label id="68">
<property name="textAlign">right</property>
<text-property name="text">Grand Total</text-property>
</label>
</property>
</extended-item>
</property>
<property name="views">
<extended-item extensionName="DimensionView" id="48">
<property name="dimension">Group1</property>
<property name="levels">
<extended-item extensionName="LevelView" name="NewLevel View1" id="49">
<property name="level">Group1/PRODUCTLINE</property>
<property name="member">
<extended-item extensionName="CrosstabCell" id="50">
<property name="content">
<data name="PRODUCTLINE" id="51">
<property name="textAlign">right</property>
<property name="resultSetColumn">PRODUCTLINE</property>
</data>
</property>
</extended-item>
</property>
</extended-item>
</property>
</extended-item>
</property>
</extended-item>
</property>
<property name="header">
<extended-item extensionName="CrosstabCell" id="41"/>
</property>
<property name="masterPage">Simple MasterPage</property>
<property name="pageBreakAfter">always</property>
<property name="cube">Sales Cube</property>
<list-property name="boundDataColumns">
<structure>
<property name="name">STATE</property>
<expression name="expression">dimension["Group"]["STATE"]</expression >
<property name="dataType">string</property>
</structure>
<structure>
<property name="name">PRODUCTLINE</property>
<expression name="expression">dimension["Group1"]["PRODUCTLINE"]</expression >
<property name="dataType">string</property>
</structure>
<structure>
<property name="name">Extended_Price_Group/STATE_Group1/PRODUCTLINE</property >
<expression name="expression">measure["Extended_Price"]</expression >
<property name="dataType">float</property>
<simple-property-list name="aggregateOn">
<value>Group/STATE</value>
<value>Group1/PRODUCTLINE</value>
</simple-property-list>
<property name="aggregateFunction">SUM</property>
</structure>
<structure>
<property name="name">Extended_Price_Group1/PRODUCTLINE</property>
<expression name="expression">measure["Extended_Price"]</expression >
<property name="dataType">float</property>
<simple-property-list name="aggregateOn">
<value>Group1/PRODUCTLINE</value>
</simple-property-list>
<property name="aggregateFunction">sum</property>
</structure>
<structure>
<property name="name">Extended_Price_Group/STATE</property>
<expression name="expression">measure["Extended_Price"]</expression >
<property name="dataType">float</property>
<simple-property-list name="aggregateOn">
<value>Group/STATE</value>
</simple-property-list>
<property name="aggregateFunction">sum</property>
</structure>
<structure>
<property name="name">Extended_Price</property>
<expression name="expression">measure["Extended_Price"]</expression >
<property name="dataType">float</property>
<property name="aggregateFunction">sum</property>
</structure>
</list-property>
</extended-item>
<extended-item extensionName="Crosstab" extensionVersion="2.5.0" id="81">
<property name="measures">
<extended-item extensionName="MeasureView" id="83">
Re: Crosstab page break down and across [message #631578 is a reply to message #631561] Fri, 08 October 2010 04:56 Go to previous messageGo to next message
Chris  is currently offline Chris Friend
Messages: 47
Registered: September 2010
Member
Problem solved Found sample @ www.BIRT-exchange.org
file
wfd_12417958024a044cda97b53--crosstabpagebreak.rptdesign
Re: Crosstab page break down and across [message #868151 is a reply to message #631578] Tue, 01 May 2012 17:18 Go to previous messageGo to next message
Lane Davis-Coury is currently offline Lane Davis-CouryFriend
Messages: 1
Registered: May 2012
Junior Member
Would love to see this solution! But there is no link to the crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
Thanks for the help!
Re: Crosstab page break down and across [message #868374 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868375 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868376 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868377 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868379 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868380 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868381 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868382 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868384 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868386 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868388 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868390 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868391 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868392 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868393 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868395 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868397 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868398 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868401 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868402 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868405 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868408 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868409 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868411 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868412 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868413 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868414 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868416 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868417 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868418 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868420 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868421 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868422 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868423 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868424 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868425 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868426 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868427 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868428 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868429 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868430 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868431 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868433 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868434 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868436 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868437 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868438 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868439 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868440 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868443 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868444 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868445 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868446 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868447 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868448 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868449 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868450 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868451 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868452 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868453 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868454 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868455 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868457 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868458 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868459 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868460 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868462 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868463 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868464 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868465 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868466 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868467 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868468 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868469 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868470 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868471 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868472 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868473 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868474 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868475 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868478 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868479 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868480 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868481 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868482 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868483 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868484 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868485 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868486 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868487 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868488 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868489 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868490 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868491 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868492 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868493 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868494 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868495 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868496 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868498 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868500 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868501 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868503 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868504 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868505 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868507 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868508 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868509 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868511 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868513 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868514 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868515 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868516 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868518 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868520 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868523 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868524 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868526 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868528 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868529 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868531 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868532 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868534 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868535 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868538 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868539 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868541 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868543 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868544 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868545 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868546 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868549 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868551 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868553 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868554 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868555 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868559 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868560 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868565 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868567 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868568 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868571 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868574 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868577 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868581 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868583 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868587 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868591 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868594 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868598 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868601 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868604 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868607 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868609 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868612 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868615 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868621 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868625 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868628 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868630 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868633 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868635 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868637 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868640 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868643 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868645 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868648 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868652 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868655 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868658 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868660 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868663 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868665 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868667 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868669 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868671 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868673 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868675 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868678 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868681 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868683 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868685 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868687 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868690 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868692 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868694 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868699 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868703 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868708 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868712 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868716 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868718 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868722 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868724 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868727 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868730 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Re: Crosstab page break down and across [message #868733 is a reply to message #868151] Tue, 01 May 2012 20:52 Go to previous message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I am not sure this is the same example, but using the page break on the
column level, you can set the number of columns before a page break
happens. See attached example.

Jason

On 5/1/2012 1:18 PM, Lane Davis-Coury wrote:
> Would love to see this solution! But there is no link to the
> crosstabpagebreak.rptdesign file and I cannot find it on the Forum.
> Thanks for the help!
Previous Topic:Plotting series with different DateTime witout losing grouping functionality
Next Topic:Bar chart x-axis labels
Goto Forum:
  


Current Time: Thu Mar 28 09:08:44 GMT 2024

Powered by FUDForum. Page generated in 0.23612 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top