Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
srbhdix
Frequent Visitor

Need help in Power BI Matrix Visualization hierarchy to ignore at second level.

Hello PBI Experts, 
 
We need some help in achieving below output table in power bi matrix visualization. We have also mentioned the input table below. Request you all experts, if you have any workaround then please feel free to reply on this mail or connect with me to help us on this requirement.  
 
Note:  We have tried matrix visualization in power bi and we have noticed that when we add the first column in rows it group by 1st category and then when we add second column by default it does group by on 2nd category however the requirement here is to not to group by on 2nd category and show all the rows associated to that categories. If we turned off the stepped layout on row headers, then the second category comes in columns but that's not meeting the requirement.
 
Output: 
 
Meeting Invitee & Subject Meeting-Start TimeMeeting-EndTimeMeeting Category
Abc@test.com   
testsub11/1/2020 7:301/1/2020 8:00Cat1
testsub21/12/2022 13:001/12/2022 13:30Cat2
testsub38/8/2022 2:008/8/2022 2:30Cat3
testsub48/8/2022 3:008/8/2022 3:30Cat1
testsub58/9/2022 3:008/9/2022 3:30Cat2
DEF@test.com   
testsub108/14/2022 2:008/14/2022 2:30Cat1
testsub68/10/2022 3:008/10/2022 3:30Cat3
testsub78/11/2022 2:008/11/2022 2:30Cat1
testsub88/11/2022 3:008/11/2022 3:30Cat2
testsub98/13/2022 2:008/13/2022 2:30Cat3
GHI@Test.com   
testsub118/15/2022 2:008/15/2022 2:30Cat2
testsub128/16/2022 2:008/16/2022 2:30Cat3
testsub138/17/2022 2:008/17/2022 2:30Cat1
testsub148/17/2022 3:008/17/2022 3:30Cat2
testsub158/18/2022 2:008/18/2022 2:30Cat3
testsub168/19/2022 2:008/19/2022 2:30Cat1
testsub178/19/2022 3:008/19/2022 3:30Cat2
GHI2@Test.com   
testsub168/19/2022 3:008/19/2022 3:30Cat2
testsub168/19/2022 2:008/19/2022 2:30Cat1
 
Input table:
 
srbhdix_0-1680208005249.png

 

1 ACCEPTED SOLUTION
srbhdix
Frequent Visitor

 

Please Find Below  following steps to achieve the requirement:                                                                                           1) i have created one POC as per the requirement. taken matrix table PFB measures which i have used for this POC.

 

 

2) i have created 4 measures i have added in to values of the matrix so that we can achieve the requirement . PFB measures for reference.

 

3) so we need to show and hide the data while user collapse the " +"  icon , wrote one measure " INSCOPE "  

 

                  

4) subject and unique id not in same line ,it's coming in different column , we need to have the same column as per the requirement, so i change to the matrix visual properties and sync the visual.

 

5 ) one problem:   i faced that when we collapse the first level of hierarchy  we were the getting data , but we need to hide that when we collapse everything ,  so we have used measure to perform the calculation only when we expand the selection. the following is the measure used to perform the calculations.

 

 

6) In data model we have to select the - Row Label " SUBJECT " &  KEY COLUMN " INDEX "

 

 


1) Collapse & Hide Subject  = if(ISINSCOPE(Invitee[Subject -1]),SELECTEDVALUE(Invitee[Subject -1]), BLANK())  

 

2) Subject = LOOKUPVALUE('DMV Meetings'[Subject],'DMV Meetings'[uniqueID],Invitee[uniqueID])

 

3) ESTART-DATE = if(ISINSCOPE(Invitee[Subject -1]),SELECTEDVALUE(Invitee[EventStartDate]), BLANK())

 

4) EEND-DATE = if(ISINSCOPE(Invitee[Subject -1]),SELECTEDVALUE(Invitee[EventEndDate]), BLANK())

 

5) EP-CATEGORY = if(ISINSCOPE(Invitee[Subject -1]),SELECTEDVALUE(Invitee[PrimaryCategory]), BLANK()) 

 

srbhdix_2-1680680176728.jpeg

srbhdix_1-1680680176727.jpeg

View solution in original post

3 REPLIES 3
srbhdix
Frequent Visitor

 

Please Find Below  following steps to achieve the requirement:                                                                                           1) i have created one POC as per the requirement. taken matrix table PFB measures which i have used for this POC.

 

 

2) i have created 4 measures i have added in to values of the matrix so that we can achieve the requirement . PFB measures for reference.

 

3) so we need to show and hide the data while user collapse the " +"  icon , wrote one measure " INSCOPE "  

 

                  

4) subject and unique id not in same line ,it's coming in different column , we need to have the same column as per the requirement, so i change to the matrix visual properties and sync the visual.

 

5 ) one problem:   i faced that when we collapse the first level of hierarchy  we were the getting data , but we need to hide that when we collapse everything ,  so we have used measure to perform the calculation only when we expand the selection. the following is the measure used to perform the calculations.

 

 

6) In data model we have to select the - Row Label " SUBJECT " &  KEY COLUMN " INDEX "

 

 


1) Collapse & Hide Subject  = if(ISINSCOPE(Invitee[Subject -1]),SELECTEDVALUE(Invitee[Subject -1]), BLANK())  

 

2) Subject = LOOKUPVALUE('DMV Meetings'[Subject],'DMV Meetings'[uniqueID],Invitee[uniqueID])

 

3) ESTART-DATE = if(ISINSCOPE(Invitee[Subject -1]),SELECTEDVALUE(Invitee[EventStartDate]), BLANK())

 

4) EEND-DATE = if(ISINSCOPE(Invitee[Subject -1]),SELECTEDVALUE(Invitee[EventEndDate]), BLANK())

 

5) EP-CATEGORY = if(ISINSCOPE(Invitee[Subject -1]),SELECTEDVALUE(Invitee[PrimaryCategory]), BLANK()) 

 

srbhdix_2-1680680176728.jpeg

srbhdix_1-1680680176727.jpeg

amitchandak
Super User
Super User

@srbhdix , if you do want to group by, you need to use a table visual (not summarized) or add an index(primary key)  column in visual

 

Power BI- Power Query Table.AddIndexColumn- https://youtu.be/KEW4bbuqbV8

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hello Amit, 

Thanks for the suggestion and response. Appreciate the same. However this does not meet the requirement if we use the table visual then the second hierarchy will come in column and the layout will get change. In terms of adding index we need to concate that with second hierarchy which is "column1" in this case. Which also will not meet the requirement. Could you please suggest a better way to achieve this without changing the format output layout 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Kudoed Authors