Forum Discussion
Join Calculated tables DAX
- 8 years ago
OK, what I would suggest is that you use an Append query to append all 3 of your tables together. You could add a column in each one of them to tell you where it came from, just create the same column in all three source queries with the same column name and give them a static value of "Open", "Closed", etc.
I think then your problems will become far easier and almost trivial at that point.
BTW -
Below is the model for the source data:
OK, what I would suggest is that you use an Append query to append all 3 of your tables together. You could add a column in each one of them to tell you where it came from, just create the same column in all three source queries with the same column name and give them a static value of "Open", "Closed", etc.
I think then your problems will become far easier and almost trivial at that point.