Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
Hi, I have two tables, which are segmented by different years (the three bars) and different axis members. The values sum up.
How can I create a measure that properly does what I want below, while taking into account slicers?
I have tried
Measure = DIVIDE(SUM(TableA[2017]);SUM(TableB[2017]))
But that only gives me the total value, not segmented by the axis or slicers.
Solved! Go to Solution.
Hi @jomikk,
You can get this result when you use shared dimensions. So for example if you have two tables with both a date column, you should add a calendar table that relates to these both tables containing a year column. This column should then be used in the chart.
If you use a measure that divides a SUM measure from both tables, it will do this based on the year from the calendar table that filters both tables with values.
Because it seems that you have columns with year's, please unpivot them so you have 1 column with Value and two rows with year. Join that year to a calendar table and voilla.
Hi @jomikk,
You can get this result when you use shared dimensions. So for example if you have two tables with both a date column, you should add a calendar table that relates to these both tables containing a year column. This column should then be used in the chart.
If you use a measure that divides a SUM measure from both tables, it will do this based on the year from the calendar table that filters both tables with values.
Because it seems that you have columns with year's, please unpivot them so you have 1 column with Value and two rows with year. Join that year to a calendar table and voilla.
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
User | Count |
---|---|
92 | |
92 | |
84 | |
80 | |
49 |
User | Count |
---|---|
146 | |
137 | |
109 | |
68 | |
55 |