I have a view that contains all the records for a set of people. Some new information applies only to a subset of those people so I created a view that filters on the criteria for this subset. Is it best practice to add the new information in the original view or should I add new columns to the filtered view? I’m trying to ensure that my data stays clean as I build the table and add records. Thanks.