Difference between revisions of "Referencing Other Sections in XML Calculations"

From SmartWiki
Jump to: navigation, search
(Conditional Statements)
Line 34: Line 34:
 
==Conditional Statements==
 
==Conditional Statements==
  
Conditional Javascript statements can be used. For example, to return the value of cell ''[1,3]'' if the value ''other'' is chosen in cell ''[1,2]'' and otherwise return the value of cell ''[1,2]'', use:
+
Conditional Javascript statements can be used. For example, to return the value of cell ''[1,3]'' if the value ''other'' is chosen in cell ''[1,2]'' and otherwise return the value of cell ''[1,2]'', enter the following in the ''Content'' section:
  
 
<pre style="white-space: pre-wrap;  white-space: -moz-pre-wrap;  white-space: -pre-wrap;  white-space: -o-pre-wrap;  word-wrap: break-word;">= (([1,2]=='other') ? [1,3] : [1,2])</pre>
 
<pre style="white-space: pre-wrap;  white-space: -moz-pre-wrap;  white-space: -pre-wrap;  white-space: -o-pre-wrap;  word-wrap: break-word;">= (([1,2]=='other') ? [1,3] : [1,2])</pre>

Revision as of 14:58, 8 January 2015

The following is a step-by-step walkthrough of creating an XML worksheet that calculates the totals across sections.

XMLExample-Cross-SectionReferences.png

In the example above, the Overview section contains the totals of the values entered under the Staff and Equipment sections.

To create these total and subtotal references:

  1. Edit the XML custom field
  2. Click on the Section Builder button
    You will see the list of Sections at the left.
    XMLSections.png
  3. Find the Section ID of each section to be referenced (in this example, Staff and Equipment), by floating your cursor over the section name:
    LocationOfXMLSectionID.png
    The Section ID will be contained in the URL shown at the bottom of the page.
    The Section ID of the Staff section in this example is 1440.
  4. Click into the Staff section and then into the column heading of the first row whose total should be referenced.
    Take note of the Node Name.
    Also note that the Has Total option has been selected.
    XMLExample-StaffNodeName.png
  5. Now click into the Overview section and click into the node that should contain the total for Year 1 from the Staff section.
  6. In the Content section of Cell Properties, enter the reference to the Year 1 total for Staff using the following syntax:
    =[section ID_total_Node Name]
    In the above example, this will be =[1440_total_Year-1]
  7. You may also use @section.sectionname.id@ to avoid hard-coding section IDs


XMLSampleReferenceInOverviewToStaffTotal.png

  1. Repeat for each section total to be referenced.

The =[section ID_total_Node Name] syntax works because the Year 1 column in the Staff section has the Has Total option selected.

To return a reference to an XML section that does not use totals, use the following syntax:
=[section ID_Node Name of Row_Node Name of Column]

Multiple sections can be referenced to provide aggregate totals:
XMLExample-ReferencingMultipleSections.png

Note: Javascript syntax can also be used, such as 

=Math.round((([1,6]+[1,3])/[1,5])*100)/100

In order to round an expression to two decimal places.

Conditional Statements

Conditional Javascript statements can be used. For example, to return the value of cell [1,3] if the value other is chosen in cell [1,2] and otherwise return the value of cell [1,2], enter the following in the Content section:

= (([1,2]=='other') ? [1,3] : [1,2])

See Also