Summary

This command inverts the sign on a number.


Attributes

  • none

Parameters

  • one number command

Example

<script scriptId="monthly_backlog_adjustment">
    <body>
        <s:assign>
            <s:question path=".monthlyBacklogAdjust"/>
            
            <s:sign>
                <s:subtract>
                    <s:numberPath path=".previousBacklog:value"/>
                    <s:numberPath path=".billMonthRevenue:value"/>
                    <s:numberPath path=".currentBacklog:value"/>
                </s:subtract>
            </s:sign>
            
        </s:assign>
    </body>
    <target typeId="billMonthRevenue" when="preprocess" shouldReconcile='true'/>
    <target typeId="previousBacklog" when="preprocess" shouldReconcile='true'/>
    <target typeId="currentBacklog" when="preprocess" shouldReconcile='true'/>
</script>



Need more help?

Please visit the Fountayn Contact Information page.