NoRound

Turns off rounding for all following Exp statements. This function can be used in these types of rules:

  • Calculation

  • Translation

  • Allocation

    Tip:

    You can also turn off rounding by entering 0 as the argument for the Round function. For example, HS.Round(0) turns off rounding.

Syntax

HS.NoRound

Return Value

None.

Example

This example rounds the amount inserted into the SalesRound account’s cells to the nearest tenth, then uses NoRound to turn off rounding for the amount inserted into the SalesNoRound account’s cells:

HS.Round 0.1
HS.Exp "A#SalesRound" = "A#Sales"
HS.NoRound
HS.Exp "A#SalesNoRound" = "A#Sales"