I have some data in the first columns, some calculated fields right after that, and I want to autocomplete the rest of the lines with the same rules as in the first row.
The total number of rows, the number of columns for the input / calculated data is known, and I would appreciate a working example for this data:
| A | B | C | D | E | ---------------------------------------------- 1 | 3 | 1 | =A1+B1 | =A1*B1 | =sum(C1:D1)| 2 | 4 | 4 | | | | 3 | 5 | 23 | | | | 4 | 42 | 4 | | | | 5 | 7 | 4 | | | |
Real data usually has 10K + rows and 30 + columns. When I try to do this manually, sometimes I get a Selection is too large error. I am talking about this because the general solution may not work with VBA, but if I know how to do this, then I will do it for each column, if necessary. The version of Excel is 2000, and this is not my mistake :)
Lipis source share