How to solve the problem with "do..while" function,
if i have data like this,
taxbefore= 2000
taxvalue= 0.02
how to get taxafter with "do..while" function?
taxbefore | | taxafter |
2000 | 40 | 0.8 | 0.016 | 2040.816 |
formula> | (2000*0.02) = 40 | (40*0.02) = 0.8 | (0.8*0.02) = 0.016 | =sum(2000+40+0.8+0.016) |
thank you
best regards
edo