I have data that can go through different stages, during which it will have common fields and fields that are only used on specific stages.
If I e.g. have these fields: CommenField1, CommenField2, StageA1, StageA2, StageB1, StageB2
They could either exists two individual lists, i.e. A and B like so:
- A = CommenField1, CommenField2, StageA1, StageA2
- B = CommenField1, CommenField2, StageB1, StageB2
Or as a single larger list with all fields and with views that shows the same fields as the lists
A and B.
What is the common choice between the two options, and what are the pros/cons between them?