N
nate337
Hi
I am trying to edit the X, Z, and ZZ reports and am having troubles.
Here is what I have added:
<!--
===========================
Section: Sales Calculations
===========================
-->
<ROW> "Sales Calculations" </ROW>
<Row> "Net Sales|" Report.Department.Sales </ROW>
<IF>
<CONDITION> HideZeroTaxes </CONDITION>
<THEN>
<FOR each = "ReportTax">
<IF>
<CONDITION> Report.Tax.Total <> 0 </CONDITION>
<THEN>
<ROW> Report.Tax.Description "|" Report.Tax.Total </ROW>
</THEN>
</IF>
</FOR>
</THEN>
<ELSE>
<FOR each = "ReportTax">
<ROW> Report.Tax.Description "|" Report.Tax.Total </ROW>
</FOR>
</ELSE>
</IF>
<ROW> "Gross Sales|" Report.TotalIn </ROW>
<ROW> "" </ROW>
----
The full file is also included.
When I try to import into Manager, it gives me an error that says the XML
may be formed incorrectly.
Thanks for your help
I am trying to edit the X, Z, and ZZ reports and am having troubles.
Here is what I have added:
<!--
===========================
Section: Sales Calculations
===========================
-->
<ROW> "Sales Calculations" </ROW>
<Row> "Net Sales|" Report.Department.Sales </ROW>
<IF>
<CONDITION> HideZeroTaxes </CONDITION>
<THEN>
<FOR each = "ReportTax">
<IF>
<CONDITION> Report.Tax.Total <> 0 </CONDITION>
<THEN>
<ROW> Report.Tax.Description "|" Report.Tax.Total </ROW>
</THEN>
</IF>
</FOR>
</THEN>
<ELSE>
<FOR each = "ReportTax">
<ROW> Report.Tax.Description "|" Report.Tax.Total </ROW>
</FOR>
</ELSE>
</IF>
<ROW> "Gross Sales|" Report.TotalIn </ROW>
<ROW> "" </ROW>
----
The full file is also included.
When I try to import into Manager, it gives me an error that says the XML
may be formed incorrectly.
Thanks for your help