Requesting Filter sets

How about this old trick?

This is basically implementing select controls but as column in a table where each row corresponds to a user. Then you can put views of that one row across the whole of your doc.


P.S. If all you want is to show the same set of rows as in some other view — you can use this formula as your filter clause:

SomeOtherView.Contains(thisRow)

Then what happens is:

  • Filters get applied to SomeOtherView
  • Querying the view in a formula returns only those rows that are displayed
  • Checking for Contains() will let through only the rows that are displayed in that other already filtered view.
4 Likes