Net loss
Income Tax Float YEAR Person Formula Included used 0 timesValue type Float . Default value 0 Entity person
How is this calculated?
To calculate this variable, the following input is used
- Float income_tax__annual_gross_income Annual gross income
- Float income_tax__annual_total_deduction Annual total deduction
Formulas
This is the formula used to calculate the value of income_tax__net_loss
0001-01-01
This formula is used for scenarios from the date 0001-01-01 onwards. More info on formulas
def formula(person, period, parameters):
net_loss = person('income_tax__annual_gross_income', period) - person('income_tax__annual_total_deduction', period)
return (
net_loss * (net_loss < 0)
)