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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

How to display different scale in one matrix visual

Hi,

I have a table which contains week and date (not always the starting day of the week) as below

IDweekdate
001W4287/10
002W4297/15
003W4307/24
004W4317/29


And I have created a matrix, ID as row, week as column, count of ID as value.

IDW428W429W430W431
0011   
002 1  
003  1 
004   1


Now I want the matrix to display part of weeks, and the last week show in date form

IDW428W429W4307/287/297/307/318/18/28/3
001          
...          

 

Is it possible to do? Any answer will be helpful!

1 ACCEPTED SOLUTION
bhanu_gautam
Super User
Super User

@Anonymous , First create a date table

DateTable =
ADDCOLUMNS (
CALENDAR (DATE(2022, 7, 1), DATE(2022, 8, 3)),
"Year", YEAR([Date]),
"Month", MONTH([Date]),
"Day", DAY([Date]),
"Week", WEEKNUM([Date], 2) -- Week starts on Monday
)

 

Create relationship with your table using date column

 

Then Create a matrix visual , Drag ID column to Rows, Week column form main table to Columns and ID column to values and set it to count

Drag the Date column from the DateTable to the Columns field in the matrix visual.
Ensure that the Date column is placed after the Week column in the Columns field.




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






View solution in original post

1 REPLY 1
bhanu_gautam
Super User
Super User

@Anonymous , First create a date table

DateTable =
ADDCOLUMNS (
CALENDAR (DATE(2022, 7, 1), DATE(2022, 8, 3)),
"Year", YEAR([Date]),
"Month", MONTH([Date]),
"Day", DAY([Date]),
"Week", WEEKNUM([Date], 2) -- Week starts on Monday
)

 

Create relationship with your table using date column

 

Then Create a matrix visual , Drag ID column to Rows, Week column form main table to Columns and ID column to values and set it to count

Drag the Date column from the DateTable to the Columns field in the matrix visual.
Ensure that the Date column is placed after the Week column in the Columns field.




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors