Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Hi,
I have data in two different tables in two different file as mentioned below. Want to put one common slicer for both on the month to show the monthly variance for below two tables. If I select any month from the slicer the graph will show that month data only from Table 1 & Table 2.
Crux: need to put slicer for the data in columns.
Thanks
Solved! Go to Solution.
@ankitkagarwal88,
1. Unpivot your columns of Table 1 and Table 2 in Query Editor of Power BI Desktop.
2. Rename Attribute column in Table 1 and Table 2 to Month.
3. Create a new table using DAX below.
Table = DISTINCT(SELECTCOLUMNS('Table 1',"Month", 'Table 1'[Month]))
4. Create relationship using Month field among the three tables.
5. Create slicer using the Month field of the new table, then you are able to use the slicer to filter your visuals.
Regards,
Lydia
@ankitkagarwal88,
1. Unpivot your columns of Table 1 and Table 2 in Query Editor of Power BI Desktop.
2. Rename Attribute column in Table 1 and Table 2 to Month.
3. Create a new table using DAX below.
Table = DISTINCT(SELECTCOLUMNS('Table 1',"Month", 'Table 1'[Month]))
4. Create relationship using Month field among the three tables.
5. Create slicer using the Month field of the new table, then you are able to use the slicer to filter your visuals.
Regards,
Lydia
Hi Lydia,
Thanks for your help!!
Can you please help me with the variance calcualtion between the tables.
Like (Value of table 1-value of table 2)/value of table 1
Thanks
@ankitkagarwal88,
1. Merge the two tables in Query Editor useing Merge Queries->Merge as new functionality, then expand the value field in the Merged table.
2. Create relationship between the Table and Merged table using Month field, create a calculated column in the merged table using dax below.
Column = (Merge1[Table 1.Value]-Merge1[Value])/Merge1[Table 1.Value]
Regards,
Lydia
Thanks for your help....It is working now.:smileyhappy 🙂
Hello,
If you create a relationship between the tables, filters will work on both.
Alternatively you can create a new date table and link them both to your new table.
Then you use that data for filtering purposes.
Use this link for more information about a date table:
https://kohera.be/nl/blog/business-intelligence-nl/how-to-create-a-date-table-in-power-bi-in-2-simpl...
Good luck
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 21 | |
| 20 | |
| 12 |
| User | Count |
|---|---|
| 58 | |
| 55 | |
| 41 | |
| 36 | |
| 35 |