DIVIDEDBY(DIVSOR)

Divides the tag value by the divisor.

#results in 8.5

{AVG(LOCATION.SCORE).ROUND.DIVIDEDBY(10)}


#only display six axis labels on graph (plus first month-year)

/l/{|LOOP|RESULT.MONTH_YEAR(SORT=ORDER_NUM)}

    {|SHOWIF|LOOP.COUNT=1||LOOP.COUNTMOD(|EVALTAG(LOOP.NUMELEMENTS.DIVIDEDBY(6).ROUND)|)=0}{MONTH_YEAR.NAME.FUSIONSAFE}{/|SHOWIF|}{LOOP.HASNEXT?,}

{/|LOOP|}



MINUS(DIVSOR)

Subtracts the given number from the tag value.

#results in 85

{AVG(LOCATION.SCORE).ROUND}


#results in 75

{AVG(LOCATION.SCORE).ROUND.MINUS(10)}



MOD(DIVSOR)

Finds the remainder of division of one number by another.

#results in 85

{AVG(LOCATION.SCORE).ROUND}


#results in 5

{AVG(LOCATION.SCORE).ROUND.MOD(10)}



PLUS(ADDER)

Adds the given parameter to the tag value. This can be useful for setting the maximum of a graph’s range to slightly higher than the max data value.

#results in 95

{AVG(LOCATION.SCORE).ROUND.PLUS(10)}


#make a header cell that spans the number of months plus one for a total

<th class='month-header' colspan="{YEAR.MONTH_OF_YEAR.NUMELEMENTS.PLUS(1)}">Months</th>


#set a graph's range to its highest value plus some

{|LOOP|RESULT.MONTH_YEAR(SORT=ORDER_NUM,RESULT_FILTER=WITH_BLANKS_IN_RANGE)}

  {AVG(MONTH_YEAR.PERCENT_SCORE)}{LOOP.HASNEXT?,}


  {|VANISHIF|LOOP.HASNEXT}

    /r/0,{MAX(AVG(MONTH_YEAR.PERCENT_SCORE)).ROUND.PLUS(20)}

  {/|VANISHIF|}

{/|LOOP|}



TIMES(MULTIPLIER)

Multiplies by the given multiplier

#results in 4

{RESULT.LOCATION.NUMELEMENTS}


#results in 12

{RESULT.LOCATION.NUMELEMENTS.TIMES(3)}