Google-sheets – How to have a continuous calculation in google spreadsheets=

google sheets

So, I want to continuously divide something. I have a number, and I want to divide it into a new number, and then divide that new number, and so on. How do I make a google spreadsheet do this?

Best Answer

If you have to divide by the same number all the time simply go with power i.e. 666/3^6

If you also need all steps of calculation use this formula

=ARRAYFORMULA(42/2^(SEQUENCE(5,1,1,1))) 

where 42 is initial number, 2 is divisor, 5 is number of times you want to divide.