Operations with Numbers

Unary –
Unary +
Binary -
Binary +

Multiplication
Division
Remainder from Division

Unary –

This operation is intended to change the sign of a number to its opposite. Example:

-Sales.Count

Unary +

This operation does not perform any actions with the number. Example:

+Sales.Count

Binary -

This operation is intended to calculate the difference between two numbers. Example:

BalanceAndTurnovers.OpeningBalance – BalanceAndTurnovers.ClosingBalance
BalanceAndTurnovers.OpeningBalance - 100
400 – 357

Binary +

This operation is intended to calculate a total of two numbers. Example:

BalanceAndTurnovers.OpeningBalance + BalanceAndTurnovers.Turnover
BalanceAndTurnovers.OpeningBalance + 100
400 + 357

Multiplication

This operation is intended to multiply two numbers. Example:

Products.Price * 1.2
2 * 3.14

Division

This operation is intended to divide one operand by another. Example:

Products.Price / 1.2
2 / 3.14

Remainder from Division

This operation is intended to retrieve a remainder from dividing one operand by another. Example:

Products.Price % 1.2
2 % 3.14

See also:
                      
Data Composition System Expression Language
                       Bilingual Presentation of Data Composition System Keywords

1C:Enterprise Developer's Community