Is there a way to configure LibreOffice Calc, so that it won’t autoincrement a value if it is dragged from a single cell?
I have a spreadsheet with columns containing either values entered by hand (which are initially zero) or formulas.
A | B | C | D | E |
---|---|---|---|---|
0 | 300 | 200 | 0 | 500 |
0 | 100 | 500 | 0 | 300 |
When I now select last row and drag it down (so that formulas are copied with incremented rows), I end up with the result:
A | B | C | D | E |
---|---|---|---|---|
0 | 300 | 200 | 0 | 500 |
0 | 100 | 500 | 0 | 300 |
1 | 300 | 600 | 1 | 200 |
2 | 400 | 300 | 2 | 100 |
Afterwards I always have to manually go through the cells and replace autoincremented values with zeros.
Is there a way to disable this behavior?
IMO values should be autoincremented only if I explicitly define the rule, eg.
0 | 1 |
Into
0 | 1 | 2 | 3 |
But
0 |
Into
0 | 0 | 0 | 0 |
I just checked, Microsoft Excel behaves exactly this way.