Share via

Expanding array

Anonymous
2024-10-23T14:47:37+00:00

I have expanded a table by adding rows . The table is the source for an array. The formula in the destination table has changed to reflect the expanded array but will not populate outside the cells of the old formula. Can anyone help Please?

Microsoft 365 and Office | Excel | For home | iOS

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

3 answers

Sort by: Most helpful
  1. Anonymous
    2024-10-24T13:55:01+00:00

    You should convert your 'table' to an actual Excel Table Object - use Insert Table.

    Then you can change your formula to something like

    =IF(Table1[Data]="", "", Table1[Data])

    Where column D has the header "Data" in cell D1. Then when you add rows to your table, your formula will capture all the values in that column.

    If you don't want to do that, the other approach is to insert rows within the referenced range of your formulas - for example, insert a new row with D283 as the active cell, and the formula will expand to include values up to D284 - the value in D283 will move down, but your formulas will work to capture all the data.

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2024-10-23T17:54:44+00:00

    Hi Bernie

    Thanks for you reply. Silly me!

    =IF(Calculate!D1:D283="", "", Calculate!D1:D283)

    And =Calculate!AA4:AB283 same results with both formulas.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2024-10-23T16:51:19+00:00

    It would help if you posted the formula that you use....

    Was this answer helpful?

    0 comments No comments