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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Please help to get required output in matrix visual

My data is as shown below

bharathsurya_0-1626952551681.png

Required output,

 

bharathsurya_1-1626952753114.png

Coulmn 0 shows total account in respective  Month-Year, Rest columns (1-5) shows only Open Acc in respective months.

Not able to get this output in power bi. 
thanks in advance.

1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @Anonymous ,

Here are the steps you can follow:

1. Create calculated column.

Month_Year = FORMAT('Table'[Date],"mmm")&"-"&RIGHT(YEAR('Table'[Date]),2)
Month_Number = MONTH('Table'[Date])

2. Create measure.

1 =
SUMX(FILTER(ALL('Table'),'Table'[Month_Year]=MAX('Table'[Month_Year])&&'Table'[Type]=1),[Open Acc])
2 =
SUMX(FILTER(ALL('Table'),'Table'[Month_Year]=MAX('Table'[Month_Year])&&'Table'[Type]=2),[Open Acc])
3 =
SUMX(FILTER(ALL('Table'),'Table'[Month_Year]=MAX('Table'[Month_Year])&&'Table'[Type]=3),[Open Acc])
4 =
SUMX(FILTER(ALL('Table'),'Table'[Month_Year]=MAX('Table'[Month_Year])&&'Table'[Type]=4),[Open Acc])
5 =
SUMX(FILTER(ALL('Table'),'Table'[Month_Year]=MAX('Table'[Month_Year])&&'Table'[Type]=5),[Open Acc])

3. Select column [Month_Year] – Column tools – Sort by column – column [Month_Number]

vyangliumsft_0-1627290483393.jpeg

4. Select Sort descending in the matrix visual object.

vyangliumsft_1-1627290483395.png

5. Result:

vyangliumsft_2-1627290483396.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

2 REPLIES 2
v-yangliu-msft
Community Support
Community Support

Hi  @Anonymous ,

Here are the steps you can follow:

1. Create calculated column.

Month_Year = FORMAT('Table'[Date],"mmm")&"-"&RIGHT(YEAR('Table'[Date]),2)
Month_Number = MONTH('Table'[Date])

2. Create measure.

1 =
SUMX(FILTER(ALL('Table'),'Table'[Month_Year]=MAX('Table'[Month_Year])&&'Table'[Type]=1),[Open Acc])
2 =
SUMX(FILTER(ALL('Table'),'Table'[Month_Year]=MAX('Table'[Month_Year])&&'Table'[Type]=2),[Open Acc])
3 =
SUMX(FILTER(ALL('Table'),'Table'[Month_Year]=MAX('Table'[Month_Year])&&'Table'[Type]=3),[Open Acc])
4 =
SUMX(FILTER(ALL('Table'),'Table'[Month_Year]=MAX('Table'[Month_Year])&&'Table'[Type]=4),[Open Acc])
5 =
SUMX(FILTER(ALL('Table'),'Table'[Month_Year]=MAX('Table'[Month_Year])&&'Table'[Type]=5),[Open Acc])

3. Select column [Month_Year] – Column tools – Sort by column – column [Month_Number]

vyangliumsft_0-1627290483393.jpeg

4. Select Sort descending in the matrix visual object.

vyangliumsft_1-1627290483395.png

5. Result:

vyangliumsft_2-1627290483396.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

lbendlin
Super User
Super User

Change your requirement. Drop the need for column 0, and enable row totals.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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