Dynamic table size (number of rows)
Hello,
I have a spreadsheet with a number of items (in this case, to-do items); let's call it the "base table". I want to create a "view" or report based on this base table. So for example, I'd like to have a second table that shows only the high-priority items in the base table.
Solutions that don't quite work:
- Filter the base table to show only high priority items. Problem: I want to have both the base table and a separate filtered view.
- Create a "view table" which directly copies over the rows of the base table; then, filter the view table. Problem: As the base table grows, I would have to manually increase the length (number of rows) of the view table to be at least as long.
- Play complicated tricks to extract just the relevant rows, as in: https://discussions.apple.com/thread/2804418?answerId=13329113022#13329113022 Problem: Somewhat annoying, which I can live with; but also, it again requires manually resizing the table as the number of rows in the view grows. And I'm wondering
Solution 2 seems closest to what I want. Is there a way to fix this to solve the dynamic table size problem? That is, something like:
- A way to create a table V which is a copy of table B, where changes to B show up inside V including changes in the number of rows.
- A way to fill in a variable number of rows in a table, expanding the table if necessary
Even better, although this is probably too much, is if there were a way to create multiple views of the base table, such that any one of the views could be edited, and would be reflected in the base table.
This is on the latest version of Numbers (v. 3.2, 2014) on OS X v. 10.9.2.