Sunteți pe pagina 1din 79

OBJECT Report 115 Salesperson - Commission

{
OBJECT-PROPERTIES
{
Date=22/11/17;
Time=12:00:00 PM;
Version List=NAVW111.00;
}
PROPERTIES
{
CaptionML=ENU=Salesperson - Commission;
OnPreReport=BEGIN
SalespersonFilter := "Salesperson/Purchaser".GETFILTERS;
CustLedgEntryFilter := "Cust. Ledger Entry".GETFILTERS;
PeriodText := "Cust. Ledger Entry".GETFILTER("Posting Date");
END;

}
DATASET
{
{ 3065; ;DataItem; ;
DataItemTable=Table13;
DataItemTableView=SORTING(Code);
PrintOnlyIfDetail=Yes;
OnPreDataItem=BEGIN
PageGroupNo := 1;

CurrReport.NEWPAGEPERRECORD := PrintOnlyOnePerPage;
CurrReport.CREATETOTALS(
"Cust. Ledger Entry"."Sales (LCY)","Cust. Ledger
Entry"."Profit (LCY)",

AdjProfit,ProfitCommissionAmt,AdjProfitCommissionAmt,SalesCommissionAmt);
END;

OnAfterGetRecord=BEGIN
IF PrintOnlyOnePerPage THEN
PageGroupNo := PageGroupNo + 1;
END;

ReqFilterFields=Code }

{ 3 ;1 ;Column ;STRSUBSTNO_Text000_PeriodText_;
SourceExpr=STRSUBSTNO(Text000,PeriodText) }

{ 5 ;1 ;Column ;CurrReport_PAGENO ;
SourceExpr=CurrReport.PAGENO }

{ 6 ;1 ;Column ;COMPANYNAME ;
SourceExpr=COMPANYPROPERTY.DISPLAYNAME }

{ 9 ;1 ;Column
;Salesperson_Purchaser__TABLECAPTION__________SalespersonFilter;
SourceExpr=TABLECAPTION + ': ' + SalespersonFilter }

{ 48 ;1 ;Column ;SalespersonFilter ;
SourceExpr=SalespersonFilter }

{ 10 ;1 ;Column
;Cust__Ledger_Entry__TABLECAPTION__________CustLedgEntryFilter;
SourceExpr="Cust. Ledger Entry".TABLECAPTION + ': ' +
CustLedgEntryFilter }

{ 49 ;1 ;Column ;CustLedgEntryFilter ;
SourceExpr=CustLedgEntryFilter }

{ 44 ;1 ;Column ;PageGroupNo ;
SourceExpr=PageGroupNo }

{ 18 ;1 ;Column ;Salesperson_Purchaser_Code;
SourceExpr=Code }

{ 19 ;1 ;Column ;Salesperson_Purchaser_Name;
SourceExpr=Name }

{ 21 ;1 ;Column ;Salesperson_Purchaser__Commission___;
SourceExpr="Commission %" }

{ 23 ;1 ;Column ;Cust__Ledger_Entry___Sales__LCY__;
SourceExpr="Cust. Ledger Entry"."Sales (LCY)" }

{ 24 ;1 ;Column ;Cust__Ledger_Entry___Profit__LCY__;
SourceExpr="Cust. Ledger Entry"."Profit (LCY)" }

{ 25 ;1 ;Column ;SalesCommissionAmt ;
SourceExpr=SalesCommissionAmt;
AutoFormatType=1 }

{ 26 ;1 ;Column ;ProfitCommissionAmt ;
SourceExpr=ProfitCommissionAmt;
AutoFormatType=1 }

{ 42 ;1 ;Column ;AdjProfit ;
SourceExpr=AdjProfit;
AutoFormatType=1 }

{ 47 ;1 ;Column ;AdjProfitCommissionAmt;
SourceExpr=AdjProfitCommissionAmt;
AutoFormatType=1 }

{ 1 ;1 ;Column ;Salesperson___CommissionCaption;
SourceExpr=Salesperson___CommissionCaptionLbl }

{ 4 ;1 ;Column ;CurrReport_PAGENOCaption;
SourceExpr=CurrReport_PAGENOCaptionLbl }

{ 8 ;1 ;Column ;All_amounts_are_in_LCYCaption;
SourceExpr=All_amounts_are_in_LCYCaptionLbl }

{ 11 ;1 ;Column ;Cust__Ledger_Entry__Posting_Date_Caption;
SourceExpr=Cust__Ledger_Entry__Posting_Date_CaptionLbl }

{ 12 ;1 ;Column ;Cust__Ledger_Entry__Document_No__Caption;
SourceExpr="Cust. Ledger Entry".FIELDCAPTION("Document No.") }

{ 13 ;1 ;Column ;Cust__Ledger_Entry__Customer_No__Caption;
SourceExpr="Cust. Ledger Entry".FIELDCAPTION("Customer No.") }
{ 14 ;1 ;Column ;Cust__Ledger_Entry__Sales__LCY__Caption;
SourceExpr="Cust. Ledger Entry".FIELDCAPTION("Sales (LCY)") }

{ 15 ;1 ;Column ;Cust__Ledger_Entry__Profit__LCY__Caption;
SourceExpr="Cust. Ledger Entry".FIELDCAPTION("Profit (LCY)") }

{ 16 ;1 ;Column ;SalesCommissionAmt_Control32Caption;
SourceExpr=SalesCommissionAmt_Control32CaptionLbl }

{ 17 ;1 ;Column ;ProfitCommissionAmt_Control33Caption;
SourceExpr=ProfitCommissionAmt_Control33CaptionLbl }

{ 40 ;1 ;Column ;AdjProfit_Control39Caption;
SourceExpr=AdjProfit_Control39CaptionLbl }

{ 46 ;1 ;Column ;AdjProfitCommissionAmt_Control45Caption;
SourceExpr=AdjProfitCommissionAmt_Control45CaptionLbl }

{ 20 ;1 ;Column ;Salesperson_Purchaser__Commission___Caption;
SourceExpr=FIELDCAPTION("Commission %") }

{ 22 ;1 ;Column ;TotalCaption ;
SourceExpr=TotalCaptionLbl }

{ 8503;1 ;DataItem; ;
DataItemTable=Table21;
DataItemTableView=SORTING(Salesperson Code,Posting Date)
WHERE(Document Type=FILTER(Invoice|Credit Memo));
OnPreDataItem=BEGIN
CurrReport.CREATETOTALS(
"Sales (LCY)","Profit (LCY)",AdjProfit,

ProfitCommissionAmt,AdjProfitCommissionAmt,SalesCommissionAmt);
END;

OnAfterGetRecord=VAR
CostCalcMgt@1000 : Codeunit 5836;
BEGIN
SalesCommissionAmt := ROUND("Sales (LCY)" *
"Salesperson/Purchaser"."Commission %" / 100);
ProfitCommissionAmt := ROUND("Profit (LCY)" *
"Salesperson/Purchaser"."Commission %" / 100);
AdjProfit := "Sales (LCY)" +
CostCalcMgt.CalcCustLedgActualCostLCY("Cust. Ledger Entry");
AdjProfitCommissionAmt := ROUND(AdjProfit *
"Salesperson/Purchaser"."Commission %" / 100);
END;

ReqFilterFields=Posting Date;
DataItemLink=Salesperson Code=FIELD(Code) }

{ 27 ;2 ;Column ;Cust__Ledger_Entry__Posting_Date_;
SourceExpr=FORMAT("Posting Date") }

{ 28 ;2 ;Column ;Cust__Ledger_Entry__Document_No__;
SourceExpr="Document No." }

{ 29 ;2 ;Column ;Cust__Ledger_Entry__Customer_No__;
SourceExpr="Customer No." }
{ 30 ;2 ;Column ;Cust__Ledger_Entry__Sales__LCY__;
SourceExpr="Sales (LCY)" }

{ 31 ;2 ;Column ;Cust__Ledger_Entry__Profit__LCY__;
SourceExpr="Profit (LCY)" }

{ 32 ;2 ;Column ;SalesCommissionAmt_Control32;
SourceExpr=SalesCommissionAmt;
AutoFormatType=1 }

{ 33 ;2 ;Column ;ProfitCommissionAmt_Control33;
SourceExpr=ProfitCommissionAmt;
AutoFormatType=1 }

{ 39 ;2 ;Column ;AdjProfit_Control39 ;
SourceExpr=AdjProfit;
AutoFormatType=1 }

{ 45 ;2 ;Column ;AdjProfitCommissionAmt_Control45;
SourceExpr=AdjProfitCommissionAmt;
AutoFormatType=1 }

{ 34 ;2 ;Column ;Salesperson_Purchaser__Name;
SourceExpr="Salesperson/Purchaser".Name }

}
REQUESTPAGE
{
PROPERTIES
{
SaveValues=Yes;
}
CONTROLS
{
{ 1900000001;0;Container;
ContainerType=ContentArea }

{ 1900000002;1;Group ;
CaptionML=ENU=Options }

{ 1 ;2 ;Field ;
CaptionML=ENU=New Page per Person;
ToolTipML=ENU=Specifies if each person's information is printed
on a new page if you have chosen two or more persons to be included in the report.;
ApplicationArea=#Suite;
SourceExpr=PrintOnlyOnePerPage }

}
}
LABELS
{
}
CODE
{
VAR
Text000@1000 : TextConst 'ENU=Period: %1';
SalespersonFilter@1001 : Text;
CustLedgEntryFilter@1002 : Text;
PeriodText@1003 : Text;
AdjProfit@1008 : Decimal;
ProfitCommissionAmt@1004 : Decimal;
AdjProfitCommissionAmt@1007 : Decimal;
SalesCommissionAmt@1005 : Decimal;
PrintOnlyOnePerPage@1006 : Boolean;
PageGroupNo@1009 : Integer;
Salesperson___CommissionCaptionLbl@9780 : TextConst 'ENU=Salesperson -
Commission';
CurrReport_PAGENOCaptionLbl@8565 : TextConst 'ENU=Page';
All_amounts_are_in_LCYCaptionLbl@2699 : TextConst 'ENU=All amounts are in
LCY';
Cust__Ledger_Entry__Posting_Date_CaptionLbl@2385 : TextConst 'ENU=Posting
Date';
SalesCommissionAmt_Control32CaptionLbl@7398 : TextConst 'ENU=Sales Commission
(LCY)';
ProfitCommissionAmt_Control33CaptionLbl@7609 : TextConst 'ENU=Profit
Commission (LCY)';
AdjProfit_Control39CaptionLbl@5087 : TextConst 'ENU=Adjusted Profit (LCY)';
AdjProfitCommissionAmt_Control45CaptionLbl@1782 : TextConst 'ENU=Adjusted
Profit Commission (LCY)';
TotalCaptionLbl@1909 : TextConst 'ENU=Total';

BEGIN
END.
}
RDLDATA
{
<?xml version="1.0" encoding="utf-8"?>
<Report
xmlns="http://schemas.microsoft.com/sqlserver/reporting/2016/01/reportdefinition"
xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
<AutoRefresh>0</AutoRefresh>
<DataSources>
<DataSource Name="DataSource">
<ConnectionProperties>
<DataProvider>SQL</DataProvider>
<ConnectString />
</ConnectionProperties>
<rd:SecurityType>None</rd:SecurityType>
<rd:DataSourceID>eae4e88c-a78a-4aa5-8d0a-50d0b87ba410</rd:DataSourceID>
</DataSource>
</DataSources>
<DataSets>
<DataSet Name="DataSet_Result">
<Query>
<DataSourceName>DataSource</DataSourceName>
<CommandText />
</Query>
<Fields>
<Field Name="STRSUBSTNO_Text000_PeriodText_">
<DataField>STRSUBSTNO_Text000_PeriodText_</DataField>
</Field>
<Field Name="CurrReport_PAGENO">
<DataField>CurrReport_PAGENO</DataField>
</Field>
<Field Name="COMPANYNAME">
<DataField>COMPANYNAME</DataField>
</Field>
<Field
Name="Salesperson_Purchaser__TABLECAPTION__________SalespersonFilter">

<DataField>Salesperson_Purchaser__TABLECAPTION__________SalespersonFilter</DataFiel
d>
</Field>
<Field Name="SalespersonFilter">
<DataField>SalespersonFilter</DataField>
</Field>
<Field
Name="Cust__Ledger_Entry__TABLECAPTION__________CustLedgEntryFilter">

<DataField>Cust__Ledger_Entry__TABLECAPTION__________CustLedgEntryFilter</DataField
>
</Field>
<Field Name="CustLedgEntryFilter">
<DataField>CustLedgEntryFilter</DataField>
</Field>
<Field Name="PageGroupNo">
<DataField>PageGroupNo</DataField>
</Field>
<Field Name="Salesperson_Purchaser_Code">
<DataField>Salesperson_Purchaser_Code</DataField>
</Field>
<Field Name="Salesperson_Purchaser_Name">
<DataField>Salesperson_Purchaser_Name</DataField>
</Field>
<Field Name="Salesperson_Purchaser__Commission___">
<DataField>Salesperson_Purchaser__Commission___</DataField>
</Field>
<Field Name="Salesperson_Purchaser__Commission___Format">
<DataField>Salesperson_Purchaser__Commission___Format</DataField>
</Field>
<Field Name="Cust__Ledger_Entry___Sales__LCY__">
<DataField>Cust__Ledger_Entry___Sales__LCY__</DataField>
</Field>
<Field Name="Cust__Ledger_Entry___Sales__LCY__Format">
<DataField>Cust__Ledger_Entry___Sales__LCY__Format</DataField>
</Field>
<Field Name="Cust__Ledger_Entry___Profit__LCY__">
<DataField>Cust__Ledger_Entry___Profit__LCY__</DataField>
</Field>
<Field Name="Cust__Ledger_Entry___Profit__LCY__Format">
<DataField>Cust__Ledger_Entry___Profit__LCY__Format</DataField>
</Field>
<Field Name="SalesCommissionAmt">
<DataField>SalesCommissionAmt</DataField>
</Field>
<Field Name="SalesCommissionAmtFormat">
<DataField>SalesCommissionAmtFormat</DataField>
</Field>
<Field Name="ProfitCommissionAmt">
<DataField>ProfitCommissionAmt</DataField>
</Field>
<Field Name="ProfitCommissionAmtFormat">
<DataField>ProfitCommissionAmtFormat</DataField>
</Field>
<Field Name="AdjProfit">
<DataField>AdjProfit</DataField>
</Field>
<Field Name="AdjProfitFormat">
<DataField>AdjProfitFormat</DataField>
</Field>
<Field Name="AdjProfitCommissionAmt">
<DataField>AdjProfitCommissionAmt</DataField>
</Field>
<Field Name="AdjProfitCommissionAmtFormat">
<DataField>AdjProfitCommissionAmtFormat</DataField>
</Field>
<Field Name="Salesperson___CommissionCaption">
<DataField>Salesperson___CommissionCaption</DataField>
</Field>
<Field Name="CurrReport_PAGENOCaption">
<DataField>CurrReport_PAGENOCaption</DataField>
</Field>
<Field Name="All_amounts_are_in_LCYCaption">
<DataField>All_amounts_are_in_LCYCaption</DataField>
</Field>
<Field Name="Cust__Ledger_Entry__Posting_Date_Caption">
<DataField>Cust__Ledger_Entry__Posting_Date_Caption</DataField>
</Field>
<Field Name="Cust__Ledger_Entry__Document_No__Caption">
<DataField>Cust__Ledger_Entry__Document_No__Caption</DataField>
</Field>
<Field Name="Cust__Ledger_Entry__Customer_No__Caption">
<DataField>Cust__Ledger_Entry__Customer_No__Caption</DataField>
</Field>
<Field Name="Cust__Ledger_Entry__Sales__LCY__Caption">
<DataField>Cust__Ledger_Entry__Sales__LCY__Caption</DataField>
</Field>
<Field Name="Cust__Ledger_Entry__Profit__LCY__Caption">
<DataField>Cust__Ledger_Entry__Profit__LCY__Caption</DataField>
</Field>
<Field Name="SalesCommissionAmt_Control32Caption">
<DataField>SalesCommissionAmt_Control32Caption</DataField>
</Field>
<Field Name="ProfitCommissionAmt_Control33Caption">
<DataField>ProfitCommissionAmt_Control33Caption</DataField>
</Field>
<Field Name="AdjProfit_Control39Caption">
<DataField>AdjProfit_Control39Caption</DataField>
</Field>
<Field Name="AdjProfitCommissionAmt_Control45Caption">
<DataField>AdjProfitCommissionAmt_Control45Caption</DataField>
</Field>
<Field Name="Salesperson_Purchaser__Commission___Caption">
<DataField>Salesperson_Purchaser__Commission___Caption</DataField>
</Field>
<Field Name="TotalCaption">
<DataField>TotalCaption</DataField>
</Field>
<Field Name="Cust__Ledger_Entry__Posting_Date_">
<DataField>Cust__Ledger_Entry__Posting_Date_</DataField>
</Field>
<Field Name="Cust__Ledger_Entry__Document_No__">
<DataField>Cust__Ledger_Entry__Document_No__</DataField>
</Field>
<Field Name="Cust__Ledger_Entry__Customer_No__">
<DataField>Cust__Ledger_Entry__Customer_No__</DataField>
</Field>
<Field Name="Cust__Ledger_Entry__Sales__LCY__">
<DataField>Cust__Ledger_Entry__Sales__LCY__</DataField>
</Field>
<Field Name="Cust__Ledger_Entry__Sales__LCY__Format">
<DataField>Cust__Ledger_Entry__Sales__LCY__Format</DataField>
</Field>
<Field Name="Cust__Ledger_Entry__Profit__LCY__">
<DataField>Cust__Ledger_Entry__Profit__LCY__</DataField>
</Field>
<Field Name="Cust__Ledger_Entry__Profit__LCY__Format">
<DataField>Cust__Ledger_Entry__Profit__LCY__Format</DataField>
</Field>
<Field Name="SalesCommissionAmt_Control32">
<DataField>SalesCommissionAmt_Control32</DataField>
</Field>
<Field Name="SalesCommissionAmt_Control32Format">
<DataField>SalesCommissionAmt_Control32Format</DataField>
</Field>
<Field Name="ProfitCommissionAmt_Control33">
<DataField>ProfitCommissionAmt_Control33</DataField>
</Field>
<Field Name="ProfitCommissionAmt_Control33Format">
<DataField>ProfitCommissionAmt_Control33Format</DataField>
</Field>
<Field Name="AdjProfit_Control39">
<DataField>AdjProfit_Control39</DataField>
</Field>
<Field Name="AdjProfit_Control39Format">
<DataField>AdjProfit_Control39Format</DataField>
</Field>
<Field Name="AdjProfitCommissionAmt_Control45">
<DataField>AdjProfitCommissionAmt_Control45</DataField>
</Field>
<Field Name="AdjProfitCommissionAmt_Control45Format">
<DataField>AdjProfitCommissionAmt_Control45Format</DataField>
</Field>
<Field Name="Salesperson_Purchaser__Name">
<DataField>Salesperson_Purchaser__Name</DataField>
</Field>
</Fields>
<rd:DataSetInfo>
<rd:DataSetName>DataSet</rd:DataSetName>
<rd:SchemaPath>Report.xsd</rd:SchemaPath>
<rd:TableName>Result</rd:TableName>
</rd:DataSetInfo>
</DataSet>
</DataSets>
<ReportSections>
<ReportSection>
<Body>
<ReportItems>
<Textbox
Name="Salesperson_Purchaser__TABLECAPTION__________SalespersonFilter">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=First(Fields!
Salesperson_Purchaser__TABLECAPTION__________SalespersonFilter.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<Height>0.423cm</Height>
<Width>17.85cm</Width>
<ZIndex>2</ZIndex>
<Visibility>
<Hidden>=IIF(Fields!SalespersonFilter.Value="",TRUE,FALSE)</Hidden>
</Visibility>
<DataElementOutput>NoOutput</DataElementOutput>
<Style>
<VerticalAlign>Middle</VerticalAlign>
</Style>
</Textbox>
<Textbox
Name="Cust__Ledger_Entry__TABLECAPTION__________CustLedgEntryFilter">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=First(Fields!
Cust__Ledger_Entry__TABLECAPTION__________CustLedgEntryFilter.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<Top>0.423cm</Top>
<Height>0.423cm</Height>
<Width>17.85cm</Width>
<ZIndex>1</ZIndex>
<Visibility>
<Hidden>=IIF(Fields!CustLedgEntryFilter.Value="",TRUE,FALSE)</Hidden>
</Visibility>
<DataElementOutput>NoOutput</DataElementOutput>
<Style>
<VerticalAlign>Middle</VerticalAlign>
</Style>
</Textbox>
<Tablix Name="Table1">
<TablixBody>
<TablixColumns>
<TablixColumn>
<Width>1.70476cm</Width>
</TablixColumn>
<TablixColumn>
<Width>1.9cm</Width>
</TablixColumn>
<TablixColumn>
<Width>1.8cm</Width>
</TablixColumn>
<TablixColumn>
<Width>2cm</Width>
</TablixColumn>
<TablixColumn>
<Width>2cm</Width>
</TablixColumn>
<TablixColumn>
<Width>2cm</Width>
</TablixColumn>
<TablixColumn>
<Width>2cm</Width>
</TablixColumn>
<TablixColumn>
<Width>2cm</Width>
</TablixColumn>
<TablixColumn>
<Width>2.22222cm</Width>
</TablixColumn>
<TablixColumn>
<Width>0.1cm</Width>
</TablixColumn>
<TablixColumn>
<Width>0.1cm</Width>
</TablixColumn>
<TablixColumn>
<Width>0.1cm</Width>
</TablixColumn>
<TablixColumn>
<Width>0.1cm</Width>
</TablixColumn>
<TablixColumn>
<Width>0.1cm</Width>
</TablixColumn>
</TablixColumns>
<TablixRows>
<TablixRow>
<Height>0.99238cm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="Cust__Ledger_Entry__Posting_Date_Caption">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=First(Fields!
Cust__Ledger_Entry__Posting_Date_Caption.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>130</ZIndex>
<Style>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Cust__Ledger_Entry__Document_No__Caption">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=First(Fields!
Cust__Ledger_Entry__Document_No__Caption.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>129</ZIndex>
<Style>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Cust__Ledger_Entry__Customer_No__Caption">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=First(Fields!
Cust__Ledger_Entry__Customer_No__Caption.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>128</ZIndex>
<Style>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Cust__Ledger_Entry__Sales__LCY__Caption">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=First(Fields!
Cust__Ledger_Entry__Sales__LCY__Caption.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Right</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<ZIndex>127</ZIndex>
<Style>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Cust__Ledger_Entry__Profit__LCY__Caption">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=First(Fields!
Cust__Ledger_Entry__Profit__LCY__Caption.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Right</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<ZIndex>126</ZIndex>
<Style>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="AdjProfit_Control39Caption">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=First(Fields!
AdjProfit_Control39Caption.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Right</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<ZIndex>125</ZIndex>
<Style>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="SalesCommissionAmt_Control32Caption">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=First(Fields!
SalesCommissionAmt_Control32Caption.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Right</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<ZIndex>124</ZIndex>
<Style>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="ProfitCommissionAmt_Control33Caption">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=First(Fields!
ProfitCommissionAmt_Control33Caption.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Right</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<ZIndex>123</ZIndex>
<Style>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="AdjProfitCommissionAmt_Control45Caption">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=First(Fields!
AdjProfitCommissionAmt_Control45Caption.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Right</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<ZIndex>122</ZIndex>
<Style>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="TextBox118">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>121</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<ColSpan>5</ColSpan>
</CellContents>
</TablixCell>
<TablixCell />
<TablixCell />
<TablixCell />
<TablixCell />
</TablixCells>
</TablixRow>
<TablixRow>
<Height>0.432cm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="textbox2">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox2</rd:DefaultName>
<ZIndex>120</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox3">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style>
<FontSize>7pt</FontSize>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox3</rd:DefaultName>
<ZIndex>119</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox5">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style>
<FontSize>7pt</FontSize>
<Format>=Fields!
Salesperson_Purchaser__Commission___Format.Value</Format>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Center</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox5</rd:DefaultName>
<ZIndex>118</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox6">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox6</rd:DefaultName>
<ZIndex>117</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox7">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox7</rd:DefaultName>
<ZIndex>116</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox8">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox8</rd:DefaultName>
<ZIndex>115</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox9">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox9</rd:DefaultName>
<ZIndex>114</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox10">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox10</rd:DefaultName>
<ZIndex>113</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox17">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox17</rd:DefaultName>
<ZIndex>112</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox20">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox20</rd:DefaultName>
<ZIndex>111</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox21">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox21</rd:DefaultName>
<ZIndex>110</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox22">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox22</rd:DefaultName>
<ZIndex>109</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox23">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox23</rd:DefaultName>
<ZIndex>108</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox24">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox24</rd:DefaultName>
<ZIndex>107</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>0.432cm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="textbox29">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox29</rd:DefaultName>
<ZIndex>106</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox30">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox30</rd:DefaultName>
<ZIndex>105</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox31">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox31</rd:DefaultName>
<ZIndex>104</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox32">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox32</rd:DefaultName>
<ZIndex>103</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox33">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox33</rd:DefaultName>
<ZIndex>102</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox34">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox34</rd:DefaultName>
<ZIndex>101</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox35">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox35</rd:DefaultName>
<ZIndex>100</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox36">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox36</rd:DefaultName>
<ZIndex>99</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox37">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox37</rd:DefaultName>
<ZIndex>98</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox38">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox38</rd:DefaultName>
<ZIndex>97</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox53">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox53</rd:DefaultName>
<ZIndex>96</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox54">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox54</rd:DefaultName>
<ZIndex>95</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox55">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox55</rd:DefaultName>
<ZIndex>94</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox56">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox56</rd:DefaultName>
<ZIndex>93</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>0.432cm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="Salesperson_Purchaser_Code">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!
Salesperson_Purchaser_Code.Value</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>92</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Salesperson_Purchaser_Name">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!
Salesperson_Purchaser_Name.Value</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>91</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox69">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox69</rd:DefaultName>
<ZIndex>90</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox70">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox70</rd:DefaultName>
<ZIndex>89</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox71">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox71</rd:DefaultName>
<ZIndex>88</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox72">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox72</rd:DefaultName>
<ZIndex>87</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox73">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox73</rd:DefaultName>
<ZIndex>86</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox74">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox74</rd:DefaultName>
<ZIndex>85</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox75">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox75</rd:DefaultName>
<ZIndex>84</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox76">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox76</rd:DefaultName>
<ZIndex>83</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox77">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox77</rd:DefaultName>
<ZIndex>82</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox78">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox78</rd:DefaultName>
<ZIndex>81</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox79">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox79</rd:DefaultName>
<ZIndex>80</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox80">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox80</rd:DefaultName>
<ZIndex>79</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>0.432cm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="textbox95">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox95</rd:DefaultName>
<ZIndex>78</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox
Name="Salesperson_Purchaser__Commission___Caption">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!
Salesperson_Purchaser__Commission___Caption.Value</Value>
<Style>
<FontSize>7pt</FontSize>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>77</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Salesperson_Purchaser__Commission___">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!
Salesperson_Purchaser__Commission___.Value</Value>
<Style>
<FontSize>7pt</FontSize>
<Format>=Fields!
Salesperson_Purchaser__Commission___Format.Value</Format>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Center</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<ZIndex>76</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox98">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox98</rd:DefaultName>
<ZIndex>75</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox99">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox99</rd:DefaultName>
<ZIndex>74</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox100">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox100</rd:DefaultName>
<ZIndex>73</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox101">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox101</rd:DefaultName>
<ZIndex>72</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox102">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox102</rd:DefaultName>
<ZIndex>71</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox103">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox103</rd:DefaultName>
<ZIndex>70</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox104">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox104</rd:DefaultName>
<ZIndex>69</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox105">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox105</rd:DefaultName>
<ZIndex>68</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox106">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox106</rd:DefaultName>
<ZIndex>67</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox107">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox107</rd:DefaultName>
<ZIndex>66</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox108">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox108</rd:DefaultName>
<ZIndex>65</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>0.432cm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="textbox1">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox1</rd:DefaultName>
<ZIndex>64</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox4">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style>
<FontSize>7pt</FontSize>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox4</rd:DefaultName>
<ZIndex>63</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox11">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style>
<FontSize>7pt</FontSize>
<Format>=Fields!
Salesperson_Purchaser__Commission___Format.Value</Format>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Center</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox11</rd:DefaultName>
<ZIndex>62</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox12">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox12</rd:DefaultName>
<ZIndex>61</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox13">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox13</rd:DefaultName>
<ZIndex>60</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox14">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox14</rd:DefaultName>
<ZIndex>59</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox15">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox15</rd:DefaultName>
<ZIndex>58</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox16">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox16</rd:DefaultName>
<ZIndex>57</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox18">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox18</rd:DefaultName>
<ZIndex>56</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox19">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox19</rd:DefaultName>
<ZIndex>55</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox25">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox25</rd:DefaultName>
<ZIndex>54</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox26">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox26</rd:DefaultName>
<ZIndex>53</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox27">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox27</rd:DefaultName>
<ZIndex>52</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox28">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox28</rd:DefaultName>
<ZIndex>51</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>0.423cm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="Cust__Ledger_Entry__Posting_Date_">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!
Cust__Ledger_Entry__Posting_Date_.Value</Value>
<Style>
<FontSize>7pt</FontSize>
<Format>d</Format>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Center</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<ZIndex>13</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Cust__Ledger_Entry__Document_No__">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!
Cust__Ledger_Entry__Document_No__.Value</Value>
<Style>
<FontSize>7pt</FontSize>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Right</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<ZIndex>12</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Cust__Ledger_Entry__Customer_No__">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!
Cust__Ledger_Entry__Customer_No__.Value</Value>
<Style>
<FontSize>7pt</FontSize>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Right</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<ZIndex>11</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Cust__Ledger_Entry__Sales__LCY__">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!
Cust__Ledger_Entry__Sales__LCY__.Value</Value>
<Style>
<FontSize>7pt</FontSize>
<Format>=Fields!
Cust__Ledger_Entry__Sales__LCY__Format.Value</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>10</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Cust__Ledger_Entry__Profit__LCY__">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!
Cust__Ledger_Entry__Profit__LCY__.Value</Value>
<Style>
<FontSize>7pt</FontSize>
<Format>=Fields!
Cust__Ledger_Entry__Profit__LCY__Format.Value</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>9</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="AdjProfit_Control39">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!AdjProfit_Control39.Value</Value>
<Style>
<FontSize>7pt</FontSize>
<Format>=Fields!
AdjProfit_Control39Format.Value</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>8</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="SalesCommissionAmt_Control32">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!
SalesCommissionAmt_Control32.Value</Value>
<Style>
<FontSize>7pt</FontSize>
<Format>=Fields!
SalesCommissionAmt_Control32Format.Value</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>7</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="ProfitCommissionAmt_Control33">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!
ProfitCommissionAmt_Control33.Value</Value>
<Style>
<FontSize>7pt</FontSize>
<Format>=Fields!
ProfitCommissionAmt_Control33Format.Value</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>6</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="AdjProfitCommissionAmt_Control45">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!
AdjProfitCommissionAmt_Control45.Value</Value>
<Style>
<FontSize>7pt</FontSize>
<Format>=Fields!
AdjProfitCommissionAmt_Control45Format.Value</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>5</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="STRSUBSTNO_Text000_PeriodText_">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!
STRSUBSTNO_Text000_PeriodText_.Value</Value>
<Style>
<Color>#ff0000</Color>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>4</ZIndex>
<Visibility>
<Hidden>true</Hidden>
</Visibility>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="COMPANYNAME">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!COMPANYNAME.Value</Value>
<Style>
<Color>#ff0000</Color>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>3</ZIndex>
<Visibility>
<Hidden>true</Hidden>
</Visibility>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Salesperson___CommissionCaption">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!
Salesperson___CommissionCaption.Value</Value>
<Style>
<Color>#ff0000</Color>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>2</ZIndex>
<Visibility>
<Hidden>true</Hidden>
</Visibility>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="CurrReport_PAGENOCaption">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!
CurrReport_PAGENOCaption.Value</Value>
<Style>
<Color>#ff0000</Color>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>1</ZIndex>
<Visibility>
<Hidden>true</Hidden>
</Visibility>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="All_amounts_are_in_LCYCaption">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!
All_amounts_are_in_LCYCaption.Value</Value>
<Style>
<Color>#ff0000</Color>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<Visibility>
<Hidden>true</Hidden>
</Visibility>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>0.432cm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="textbox81">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox81</rd:DefaultName>
<ZIndex>27</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Salesperson_Purchaser__Name">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=First(Fields!
Salesperson_Purchaser__Name.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>26</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox83">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox83</rd:DefaultName>
<ZIndex>25</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Cust__Ledger_Entry__Sales__LCY___Control35">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Sum(Fields!
Cust__Ledger_Entry__Sales__LCY__.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
<Format>=First(Fields!
Cust__Ledger_Entry__Sales__LCY__Format.Value)</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>24</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox
Name="Cust__Ledger_Entry__Profit__LCY___Control36">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Sum(Fields!
Cust__Ledger_Entry__Profit__LCY__.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
<Format>=First(Fields!
Cust__Ledger_Entry__Profit__LCY__Format.Value)</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>23</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="AdjProfit_Control41">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Sum(Fields!
AdjProfit_Control39.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
<Format>=First(Fields!
AdjProfit_Control39Format.Value)</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>22</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="SalesCommissionAmt_Control37">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Sum(Fields!
SalesCommissionAmt_Control32.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
<Format>=First(Fields!
SalesCommissionAmt_Control32Format.Value)</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>21</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="ProfitCommissionAmt_Control38">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Sum(Fields!
ProfitCommissionAmt_Control33.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
<Format>=First(Fields!
ProfitCommissionAmt_Control33Format.Value)</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>20</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="AdjProfitCommissionAmt_Control43">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Sum(Fields!
AdjProfitCommissionAmt_Control45.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
<Format>=First(Fields!
AdjProfitCommissionAmt_Control45Format.Value)</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>19</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox90">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox90</rd:DefaultName>
<ZIndex>18</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox91">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox91</rd:DefaultName>
<ZIndex>17</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox92">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox92</rd:DefaultName>
<ZIndex>16</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox93">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox93</rd:DefaultName>
<ZIndex>15</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox94">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox94</rd:DefaultName>
<ZIndex>14</ZIndex>
<Style>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>0.432cm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="textbox39">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox39</rd:DefaultName>
<ZIndex>41</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox40">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox40</rd:DefaultName>
<ZIndex>40</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox41">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox41</rd:DefaultName>
<ZIndex>39</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox42">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
<Format>=First(Fields!
Cust__Ledger_Entry___Sales__LCY__Format.Value)</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox42</rd:DefaultName>
<ZIndex>38</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox43">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
<Format>=First(Fields!
Cust__Ledger_Entry___Profit__LCY__Format.Value)</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox43</rd:DefaultName>
<ZIndex>37</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox44">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
<Format>=First(Fields!
AdjProfitFormat.Value)</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox44</rd:DefaultName>
<ZIndex>36</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox45">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
<Format>=First(Fields!
SalesCommissionAmtFormat.Value)</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox45</rd:DefaultName>
<ZIndex>35</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox46">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
<Format>=First(Fields!
ProfitCommissionAmtFormat.Value)</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox46</rd:DefaultName>
<ZIndex>34</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox47">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
<Format>=First(Fields!
AdjProfitCommissionAmtFormat.Value)</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox47</rd:DefaultName>
<ZIndex>33</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox48">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox48</rd:DefaultName>
<ZIndex>32</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox49">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox49</rd:DefaultName>
<ZIndex>31</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox50">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox50</rd:DefaultName>
<ZIndex>30</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox51">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox51</rd:DefaultName>
<ZIndex>29</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox52">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox52</rd:DefaultName>
<ZIndex>28</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>0.423cm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="TotalCaption">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=First(Fields!TotalCaption.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>50</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<ColSpan>2</ColSpan>
</CellContents>
</TablixCell>
<TablixCell />
<TablixCell>
<CellContents>
<Textbox Name="TextBox117">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>49</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Cust__Ledger_Entry___Sales__LCY__">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Sum(Fields!
Cust__Ledger_Entry___Sales__LCY__.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
<Format>=First(Fields!
Cust__Ledger_Entry___Sales__LCY__Format.Value)</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>48</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Cust__Ledger_Entry___Profit__LCY__">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Sum(Fields!
Cust__Ledger_Entry___Profit__LCY__.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
<Format>=First(Fields!
Cust__Ledger_Entry___Profit__LCY__Format.Value)</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>47</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="AdjProfit">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Sum(Fields!AdjProfit.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
<Format>=First(Fields!
AdjProfitFormat.Value)</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>46</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="SalesCommissionAmt">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Sum(Fields!
SalesCommissionAmt.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
<Format>=First(Fields!
SalesCommissionAmtFormat.Value)</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>45</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="ProfitCommissionAmt">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Sum(Fields!
ProfitCommissionAmt.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
<Format>=First(Fields!
ProfitCommissionAmtFormat.Value)</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>44</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>0.075cm</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="AdjProfitCommissionAmt">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Sum(Fields!
AdjProfitCommissionAmt.Value)</Value>
<Style>
<FontSize>7pt</FontSize>
<FontWeight>Bold</FontWeight>
<Format>=First(Fields!
AdjProfitCommissionAmtFormat.Value)</Format>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>43</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>0.075cm</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="TextBox119">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style />
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<ZIndex>42</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<ColSpan>5</ColSpan>
</CellContents>
</TablixCell>
<TablixCell />
<TablixCell />
<TablixCell />
<TablixCell />
</TablixCells>
</TablixRow>
</TablixRows>
</TablixBody>
<TablixColumnHierarchy>
<TablixMembers>
<TablixMember />
<TablixMember />
<TablixMember />
<TablixMember />
<TablixMember />
<TablixMember />
<TablixMember />
<TablixMember />
<TablixMember />
<TablixMember />
<TablixMember />
<TablixMember />
<TablixMember />
<TablixMember />
</TablixMembers>
</TablixColumnHierarchy>
<TablixRowHierarchy>
<TablixMembers>
<TablixMember>
<KeepWithGroup>After</KeepWithGroup>
<RepeatOnNewPage>true</RepeatOnNewPage>
<KeepTogether>true</KeepTogether>
</TablixMember>
<TablixMember>
<Group Name="Table1_Group">
<GroupExpressions>
<GroupExpression>=Fields!PageGroupNo.Value</GroupExpression>
</GroupExpressions>
<PageBreak>
<BreakLocation>Between</BreakLocation>
</PageBreak>
</Group>
<TablixMembers>
<TablixMember>
<Visibility>
<Hidden>=IIF(Fields!
PageGroupNo.Value="1",TRUE,FALSE)</Hidden>
</Visibility>
<KeepWithGroup>After</KeepWithGroup>
<KeepTogether>true</KeepTogether>
</TablixMember>
<TablixMember>
<Group Name="Table1_Group3">
<GroupExpressions>
<GroupExpression>=Fields!
Salesperson_Purchaser_Code.Value</GroupExpression>
</GroupExpressions>
</Group>
<TablixMembers>
<TablixMember>
<KeepWithGroup>After</KeepWithGroup>
<KeepTogether>true</KeepTogether>
</TablixMember>
<TablixMember>
<KeepWithGroup>After</KeepWithGroup>
<KeepTogether>true</KeepTogether>
</TablixMember>
<TablixMember>
<KeepWithGroup>After</KeepWithGroup>
<KeepTogether>true</KeepTogether>
</TablixMember>
<TablixMember>
<KeepWithGroup>After</KeepWithGroup>
<KeepTogether>true</KeepTogether>
</TablixMember>
<TablixMember>
<Group Name="Table1_Details_Group">
<DataElementName>Detail</DataElementName>
</Group>
<TablixMembers>
<TablixMember />
</TablixMembers>
<DataElementName>Detail_Collection</DataElementName>
<DataElementOutput>Output</DataElementOutput>
<KeepTogether>true</KeepTogether>
</TablixMember>
<TablixMember>
<KeepWithGroup>Before</KeepWithGroup>
<KeepTogether>true</KeepTogether>
</TablixMember>
</TablixMembers>
</TablixMember>
</TablixMembers>
</TablixMember>
<TablixMember>
<KeepWithGroup>Before</KeepWithGroup>
<KeepTogether>true</KeepTogether>
</TablixMember>
<TablixMember>
<KeepWithGroup>Before</KeepWithGroup>
<KeepTogether>true</KeepTogether>
</TablixMember>
</TablixMembers>
</TablixRowHierarchy>
<DataSetName>DataSet_Result</DataSetName>
<PageBreak>
<BreakLocation>End</BreakLocation>
</PageBreak>
<Top>1.08381cm</Top>
<Width>18.12698cm</Width>
</Tablix>
</ReportItems>
<Height>5.9462cm</Height>
</Body>
<Width>18.73016cm</Width>
<Page>
<PageHeader>
<Height>2.22222cm</Height>
<PrintOnFirstPage>true</PrintOnFirstPage>
<PrintOnLastPage>true</PrintOnLastPage>
<ReportItems>
<Textbox Name="PageNumberTextBox">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Globals!PageNumber</Value>
<Style>
<FontSize>7pt</FontSize>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Right</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<Top>0.423cm</Top>
<Left>17.7cm</Left>
<Height>0.423cm</Height>
<Width>0.45cm</Width>
<ZIndex>7</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
</Style>
</Textbox>
<Textbox Name="UserIdTextBox">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=User!UserID</Value>
<Style>
<FontSize>7pt</FontSize>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Right</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<Top>0.846cm</Top>
<Left>14.9cm</Left>
<Height>0.423cm</Height>
<Width>3.25cm</Width>
<ZIndex>6</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
</Style>
</Textbox>
<Textbox Name="ExecutionTimeTextBox">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Globals!ExecutionTime</Value>
<Style>
<FontSize>7pt</FontSize>
<Format>D</Format>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Right</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<Left>15cm</Left>
<Height>0.423cm</Height>
<Width>3.15cm</Width>
<ZIndex>5</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
</Style>
</Textbox>
<Textbox Name="STRSUBSTNO_Text000_PeriodText_1">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=ReportItems!
STRSUBSTNO_Text000_PeriodText_.Value</Value>
<Style>
<FontSize>7pt</FontSize>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<Top>0.423cm</Top>
<Height>0.423cm</Height>
<Width>7.5cm</Width>
<ZIndex>4</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
</Style>
</Textbox>
<Textbox Name="COMPANYNAME1">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=ReportItems!COMPANYNAME.Value</Value>
<Style>
<FontSize>7pt</FontSize>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<Top>0.846cm</Top>
<Height>0.423cm</Height>
<Width>7.5cm</Width>
<ZIndex>3</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
</Style>
</Textbox>
<Textbox Name="Salesperson___CommissionCaption1">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=ReportItems!
Salesperson___CommissionCaption.Value</Value>
<Style>
<FontSize>8pt</FontSize>
<FontWeight>Bold</FontWeight>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<Height>0.423cm</Height>
<Width>7.5cm</Width>
<ZIndex>2</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
</Style>
</Textbox>
<Textbox Name="CurrReport_PAGENOCaption1">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=ReportItems!CurrReport_PAGENOCaption.Value</Value>
<Style>
<FontSize>7pt</FontSize>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<Top>0.423cm</Top>
<Left>16.95cm</Left>
<Height>0.423cm</Height>
<Width>0.75cm</Width>
<ZIndex>1</ZIndex>
<Style>
<VerticalAlign>Middle</VerticalAlign>
</Style>
</Textbox>
<Textbox Name="All_amounts_are_in_LCYCaption1">
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=ReportItems!
All_amounts_are_in_LCYCaption.Value</Value>
<Style>
<FontSize>7pt</FontSize>
</Style>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
<Top>1.692cm</Top>
<Height>0.423cm</Height>
<Width>7.5cm</Width>
<Style>
<VerticalAlign>Middle</VerticalAlign>
</Style>
</Textbox>
</ReportItems>
</PageHeader>
<PageHeight>29.7cm</PageHeight>
<PageWidth>21cm</PageWidth>
<InteractiveHeight>11in</InteractiveHeight>
<InteractiveWidth>8.5in</InteractiveWidth>
<LeftMargin>1.5cm</LeftMargin>
<TopMargin>2cm</TopMargin>
<BottomMargin>2cm</BottomMargin>
</Page>
</ReportSection>
</ReportSections>
<Code>Public Function BlankZero(ByVal Value As Decimal)
if Value = 0 then
Return ""
end if
Return Value
End Function

Public Function BlankPos(ByVal Value As Decimal)


if Value &gt; 0 then
Return ""
end if
Return Value
End Function

Public Function BlankZeroAndPos(ByVal Value As Decimal)


if Value &gt;= 0 then
Return ""
end if
Return Value
End Function
Public Function BlankNeg(ByVal Value As Decimal)
if Value &lt; 0 then
Return ""
end if
Return Value
End Function

Public Function BlankNegAndZero(ByVal Value As Decimal)


if Value &lt;= 0 then
Return ""
end if
Return Value
End Function
</Code>
<Language>=User!Language</Language>
<ConsumeContainerWhitespace>true</ConsumeContainerWhitespace>
<rd:ReportUnitType>Invalid</rd:ReportUnitType>
<rd:ReportID>49ecfdd9-45af-40f8-b3c3-a88578e15f5e</rd:ReportID>
</Report>
END_OF_RDLDATA
}
}

S-ar putea să vă placă și