Hello,
I have a formula with several steps to find the gross of the net wage. for this to happen, I need to use the "Circular Reference". In my research, I found out that it is possible to write recursive formulas with the LAMBDA function and that the "circular reference" option is not needed (I may have misunderstood)
For example, can I find the gross of net pay by typing multiple formulas I have typed in separate cells below, in just one Excel cell (without using a circular reference)?
Thanks,
I have a formula with several steps to find the gross of the net wage. for this to happen, I need to use the "Circular Reference". In my research, I found out that it is possible to write recursive formulas with the LAMBDA function and that the "circular reference" option is not needed (I may have misunderstood)
For example, can I find the gross of net pay by typing multiple formulas I have typed in separate cells below, in just one Excel cell (without using a circular reference)?
recursive_maas.xlsx | |||||||||
---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | |||
1 | Month | Net | Day | Gross | Base | Social | Unemployment | ||
2 | 1 | 17002,12 | 30 | 20.002,50 | 20002,5 | 2800,35 | 200,03 | ||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
D2 | D2 | =B2+F2+G2 |
E2 | E2 | =IF(D2>150018.9,150018.9,D2) |
F2 | F2 | =ROUND(E2*14%,2) |
G2 | G2 | =ROUND(E2*1%,2) |
Thanks,