As I have created several queries already, I am familiar with the process, but Im unsure if creation logic is acceptable if I move on to larger models with several dependant queries and I dont want to start with a wrong foot.
Scenario:
One datasource (table)->output to 5 different pivots showing different figures
Probably most effective would be, if first pivot gets the data from main query, but rest of the tables depend on the data from the 1st pivot, however, each pivot needs different columns from dataset to be useful, so this cant work.
Scenario:
One datasource (table)->output to 5 different pivots showing different figures
- Create main query from this table (load it only to datamodel as a connection)
- Create another query, referencing the main query, removing columns, doing calculations, load this query as pivot1
- Create another query, referencing the main query, removing columns, doing calculations, load this query as pivot2
- Create another query, referencing the main query, removing columns, doing calculations, load this query as pivot3
- Create another query, referencing the main query, removing columns, doing calculations, load this query as pivot4
- Create another query, referencing the main query, removing columns, doing calculations, load this query as pivot5
Probably most effective would be, if first pivot gets the data from main query, but rest of the tables depend on the data from the 1st pivot, however, each pivot needs different columns from dataset to be useful, so this cant work.