Forum Discussion
Karthik12
3 years agoPost Patron
Table Visualization from 2 different tables
Hello Folks, GM. I am developing a production data display whereas data comes from 2 different tables. I would like consolidate in one matrix/table visualization as below Expected format (Fil...
Ashish_Mathur
3 years agoSuper User
Hi,
Here's my suggestion
- Rename the Qty columns to Quantity in both tables
- Insert Type column with entries as Production and Plan in each table
- Append the tables
- Write these measures
- Pl_qty = sum(Data[Plan])
- Pr_qty = sum(Data[Production])
- Gap = [Pr_qty]-[Pl_qty]
Hope this helps.