Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi All,
I am working on matrix visual and I have multiple year data and based on the year slicer I want my data to reflect. Also the header in the matrix should change dynamically. Eg if I select the year as 2024 then the sales, commission & Volumes should show Previous (year- 2023) and the rest should show year as 2024.
Any help on this is really appreciated.
Filter | |||||||
2022 | |||||||
2023 | |||||||
2024 | |||||||
2023 | 2024 | ||||||
Leader Name | Sales | Commission | Volumes | Sales | Calls | Rejections | Leads |
A | |||||||
B | |||||||
C | |||||||
D | |||||||
E | |||||||
Solved! Go to Solution.
Hi @janani80
This is possible but the approach is not very straightforward. You'll need a disconnected table to hold the name of the measures and sales is sorted twice, being the first one and then after volumes, another column has to be created that has a different value that still appears as sales thus the calculated column in the screenshot below.
Then you will need two more disconnected tables both containing the years - the first one will be used as a dimension while the other one in a slicer.
And then the measures that will bind these unrelated tables in a visual.
Switch Measure =
VAR SelectedSort =
SELECTEDVALUE ( 'Calculations'[Sort] )
RETURN
SWITCH (
SelectedSort,
1, [Sales Amt],
2, [Commission Amt],
3, [Volumes Amt],
4, [Sales Amt],
5, [Calls Amt],
6, [Rejections Amt],
7, [Leads Amt]
)
Dynamic Measure =
VAR SelectedSort =
SELECTEDVALUE ( 'Calculations'[Sort] )
VAR SelectedYear =
SELECTEDVALUE ( Years2[Year] )
RETURN
IF (
SelectedSort <= 2,
CALCULATE (
[Switch Measure],
FILTER (
VALUES ( DateTable[Year] ),
DateTable[Year]
IN VALUES ( Years[Year] )
&& DateTable[Year] < SelectedYear
)
),
IF (
SELECTEDVALUE ( Years[Year] ) = SelectedYear,
CALCULATE ( [Switch Measure], KEEPFILTERS ( DateTable[Year] = SelectedYear ) )
)
)
And here's the output
Proud to be a Super User!
Hi @janani80 ,
If your question is not resolved, you are welcome to continue asking questions. If it is solved please mark the corresponding answer as a solution.
Best Regards
Hi @janani80 ,
If your question is not resolved, you are welcome to continue asking questions. If it is solved please mark the corresponding answer as a solution.
Best Regards
Hi @janani80
This is possible but the approach is not very straightforward. You'll need a disconnected table to hold the name of the measures and sales is sorted twice, being the first one and then after volumes, another column has to be created that has a different value that still appears as sales thus the calculated column in the screenshot below.
Then you will need two more disconnected tables both containing the years - the first one will be used as a dimension while the other one in a slicer.
And then the measures that will bind these unrelated tables in a visual.
Switch Measure =
VAR SelectedSort =
SELECTEDVALUE ( 'Calculations'[Sort] )
RETURN
SWITCH (
SelectedSort,
1, [Sales Amt],
2, [Commission Amt],
3, [Volumes Amt],
4, [Sales Amt],
5, [Calls Amt],
6, [Rejections Amt],
7, [Leads Amt]
)
Dynamic Measure =
VAR SelectedSort =
SELECTEDVALUE ( 'Calculations'[Sort] )
VAR SelectedYear =
SELECTEDVALUE ( Years2[Year] )
RETURN
IF (
SelectedSort <= 2,
CALCULATE (
[Switch Measure],
FILTER (
VALUES ( DateTable[Year] ),
DateTable[Year]
IN VALUES ( Years[Year] )
&& DateTable[Year] < SelectedYear
)
),
IF (
SELECTEDVALUE ( Years[Year] ) = SelectedYear,
CALCULATE ( [Switch Measure], KEEPFILTERS ( DateTable[Year] = SelectedYear ) )
)
)
And here's the output
Proud to be a Super User!
Thanks you. Your solution worked.
Hi @janani80
Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
Do not include sensitive information. Do not include anything that is unrelated to the issue or question.
Please show the expected outcome based on the sample data you provided.
Need help uploading data? https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Want faster answers? https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
118 | |
81 | |
48 | |
37 | |
27 |
User | Count |
---|---|
185 | |
73 | |
73 | |
50 | |
42 |