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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

matrix displaying data by date using segmentation

I have a timeseries (one year length) for 3 locations, with 1 daly value for each one of them:

Evaldes_1-1649974321629.png

 

Besides, I have 3 events categories:

 

Good: Values lower than 50

Regular: Values between 50 and 100

Bad: Values higher than 100

 

With that in mind, I need to create a matrix showing the number of Good, Regular and Bad events for each location. Something like this (referential values):

 

LocationGood  Regular  Bad  
Zona RM201354
Zona Rancagua 2697
Zona Curico832637

 

To make it even more intresting, the matrix has to be sortable by date, in order to display the number of events in a given time range. I know it can be done somehow using data segmentation:

Evaldes_3-1649976456115.png

 

I can share the data if needed. I would be very grateful if you could indicate me how to achieve this. Thanks in advance!

@GuyInACube @EnterpriseDNA 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Unpivot the locations, so you will get location and values.

https://radacad.com/pivot-and-unpivot-with-power-bi

 

Then you can have new bucket column

Switch(True() ,
[Value] < 50 , "Good" ,
[Value] < 100 , "Regular" ,
"Bad")

 

use that in visual

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

View solution in original post

3 REPLIES 3
Ashish_Mathur
Super User
Super User

Hi,

Share the download link of your PBI file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
amitchandak
Super User
Super User

@Anonymous , Unpivot the locations, so you will get location and values.

https://radacad.com/pivot-and-unpivot-with-power-bi

 

Then you can have new bucket column

Switch(True() ,
[Value] < 50 , "Good" ,
[Value] < 100 , "Regular" ,
"Bad")

 

use that in visual

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
Anonymous
Not applicable

Genius! the key was to create the conditional columns after pivot, not before....

https://app.powerbi.com/view?r=eyJrIjoiZWM4OTVkNDEtY2ZlMy00MjI0LThlMGQtZjA3ZDMzZTMxYjM3IiwidCI6ImI3O...

 

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 Solution Authors