matrix visualisation
19 TopicsMatrix Visual is not custom sorting on the Column level. sort by column for matrix column
Matrix visual is by default sort the column data on alphabatically and like rows it doesnt give option to sort Matrix column data on using sort by column option. To achieve this we need to workaround either give numaric or alphabatical range infront of column values which looks very clutter and confusing. With Numaric range as workaroud: By default behaviour:2.3KViews1like0CommentsHow do I group columns by category in the same pivot table in excel?
Good afternoon guys, what's up? I need some help I'd like to layout the PowerBi "Matrix" in the same way that the "Pivot Table" groups the categories before showing the value, as shown in the photos below. 1. Excel - Pivot Table In the image below we can see that the pivot table first categorizes the values - Volume/Weight and Volume Measure - before grouping by BAT/PMI and JTI 2 - Power BI - Matrix In Power BI, the "Matrix" does just the opposite, first it categorizes BAT/PMI/JTI and then it categorizes the values I would like to know if it is possible to visualize the "Pivot Table" (example of photo 1) in PowerBI with "Matrix"?698Views0likes1CommentNeed help measures in Matrix Visual
Experts, Need your help on the below secnario. 1. I have one measure and dates always fetches only two dates ex: June 2023 & Dec 2022. If I put my measure in matrix visual and keep the dates column in Matix columns and it gets splitted i.e. fine. However, Now Business user is asking to see the difference from current vs. previous only instead of Dec 2022. Below is snapshot current vs. expectation from business user. Current: Expectation:Solved705Views0likes2CommentsNeed help with creating a calculated variance column in Matrix
Hi everyone. Currently I have a dataset which contains the volume of product by date and grade, in rows. I would like to display this in a Matrix and allow the user to slice and dice based on grade of product. The real question/problem I have is, I would like to add a variance column to compare the difference between two rows of data based on date. See my data sample below and my desired Matrix. Ideally, I would like to be able to filter accordingly, and in this case, my default filter is set to 'Export'. Raw Data Product Grade Date Volume Apples Export 27/10/2022 100 Oranges Export 27/10/2022 120 Pears Export 27/10/2022 130 Bananas Export 27/10/2022 80 Apples Local 27/10/2022 120 Oranges Local 27/10/2022 40 Pears Local 27/10/2022 50 Bananas Local 27/10/2022 100 Apples Export 28/10/2022 120 Oranges Export 28/10/2022 40 Pears Export 28/10/2022 50 Bananas Export 28/10/2022 100 Apples Local 28/10/2022 100 Oranges Local 28/10/2022 120 Pears Local 28/10/2022 130 Bananas Local 28/10/2022 80 Desired Matrix Note: Slicer is set to Export Product 27/10/2022 28/10/2022 Volume Diff % Diff Apples 100 120 20 20% Oranges 120 40 -80 -67% Pears 130 50 -80 -62% Bananas 80 100 20 25% whereby Product is ROWS Date is Columns Volume is Values Hope this makes sense and thanks in advance for your help. Cheers,JLSolved372Views0likes1CommentMatrix visual tooltip to show values
I have a table of elements such as: Each person can have multiple categories. From this table I have managed to create a matrix like this: In order to achieve this (with help from this forum) I used the following Measure to aggregate the numbers: Measure = if(VALUES(Classification[Classification])=VALUES(Classification_dup[Classification]),0,CALCULATE([People],CALCULATETABLE(SUMMARIZE(VALUES(Data[IdPerson]),Data[IdPerson]),ALL(Classification),USERELATIONSHIP(Data[Classification],Classification_dup[Classification])))) I am now struggling with trying to create a tooltip that shows the Name (or ID) of the people in each cell, i.e. I want to create something that liiks like this: The mock up file is attached below: https://www.dropbox.com/s/i2wrw6zowwjzxs0/Cross%20matrix%20example%20post.pbix?dl=0 I would be very grateful for any help.Solved742Views0likes1CommentRe-order column on matrix visualization
Hi, I have created matrix visualization like below. But, I need to move the latest (W-1,W-2) under each of Freq and SLF. Also I need to make it W-1 first and then W-2. Here I attached an example for what visualization I want. Could anyone help me on this case please? Thanks in advance 🙂Conditional formatting in matrix with text as values
Hello PBI community, I build a Matrix visualisation with text as values (using CONCATENAX Dax formula) and now I would like to do conditional formating on each line of my matrix. But it doesn't work for the moment as you can see on the screenshot, it only do it by "block" of values. Do you have any idea ? Thanks a lot688Views0likes2CommentsFiltering "Red" and "Green" in a project with Measures
I have a project created with Measures. Can we filter red and green with measure in a matrix? To give more detail, i would like to filter the matrix in attached image by green or red. Ie. if i filter green, Region C1-Z August value shouldnt be visible. On the other hand, rest of the green values in August column should be visible. Another example ie. if i filter green Region C1-Y September value shouldnt be shown. But, rest of the green values in matrix including Region C1-Y August value should be visible. The rows containing any red value should not be deleted completely. I hope its clear. Looking forward for your suggestions.1.5KViews0likes3CommentsRolling sum in matrix categories with slicer
Hi, I'm quite new to DAX and Power BI and I'm having a struggle getting this rolling sum to work with category in matrix using a slicer in the report. We have a month slicer in the report and this sample is for 202111 selection. In matrix we want for each month to be shown rolling 12 month sum per areaid. I have managed to get the rolling sum to work without category, but it does not work with categories. Is this even possible with DAX? I know I could do this with other reporting tools so I would assume this should be possible with DAX too but I just can't figure it out. Here is the DAX I have now. ActionsRolling:= VAR endDate = MAX(Calendar[YYYYMM]) VAR startDate = endDate - 100 VAR RollingSum = CALCULATE(SUM(Actions[checkins]),FILTER(ALL(Actions), AND(Actions[YYYYMM] > startDate, Actions[YYYYMM] <= endDate))) RETURN RollingSum Actions_R12:= VAR endDate = MAX(TimeSlicer[YYYYMM]) VAR startDate = endDate - 100 VAR MeasureR = Actions[ActionsRolling] RETURN IF(MIN( Calendar[YYYYMM]) <= startDate, BLANK(), IF(MIN(Calendar[YYYYMM]) > endDate, BLANK(), MeasureR)) With this DAX we get the result like this. These numbers in matrix tables might not be 100% accurate as I quickly put them up in excel but you should get the idea of the problem here. 202012 202101 202102 202103 202104 202105 202106 202107 202108 202109 202110 202111 Area1 141 158 160 167 175 178 182 187 191 190 180 160 Area2 141 158 160 167 175 178 182 187 191 190 180 160 Area3 141 158 160 167 175 178 182 187 191 190 180 160 total 141 158 160 167 175 178 182 187 191 190 180 160 While the result should look like: 202012 202101 202102 202103 202104 202105 202106 202107 202108 202109 202110 202111 Area1 11 10 9 10 12 12 13 14 15 15 15 15 Area2 116 135 140 147 153 159 163 168 171 173 163 144 Area3 14 13 11 10 10 7 6 5 5 2 2 1 total 141 158 160 167 175 178 182 187 191 190 180 160 Here are the tables with joins. Thank you in advance! - AkuSolved2.6KViews0likes9CommentsHow to create power BI visual for matrix table from multiple sheets.
Im new to POWER BI. How to create visual for matrox table? I need to create a dashboard with two bar charts, the first of which will display reports by category. Second, the chart will display the product-based report. However, in order to create an interactive main chart, I need to connect two sheets. If you click the corresponding category in the main chart, the second chart will be based on the first chart's selected category. How to do that?