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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
thomas_coltrain
Frequent Visitor

Combining values from a field and filtering into rows

Hey everyone,

Here is some sample data of what I am trying to create..

Let's say I have the field "Work Orders".. using the column "PrimaryIncidentType" (Workorder[PrimaryIncidentTypeName]  is the exact field name)

inside this field can contain

AT - PM

AT - DM

AT - EM

CT - PM

CT - DM

CT - DM

DC - PM

DC - DM

DC - EM (this goes on like 3 more times)

Is there a way to get just the PM in a row named PM and contains all of the data just for the PMs?  Same with others, here is my goal below

                        Jan     Feb    March  etc etc                        Dec

PM                    $20  $10   etc etc

DM

EM

Thanks!

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

Hi, @thomas_coltrain 

You can try to add another calculated column to category these data rows ,then apply this field to a matrix row.

Calculated column =
SWITCH (
    TRUE (),
    CONTAINSSTRING ( Workorder[PrimaryIncidentTypeName], "PM" ), "PM",
    CONTAINSSTRING ( Workorder[PrimaryIncidentTypeName], "DM" ), "DM",
    CONTAINSSTRING ( Workorder[PrimaryIncidentTypeName], "EM" ), "EM"
)

 

Best Regards,
Community Support Team _ Eason

View solution in original post

2 REPLIES 2
v-easonf-msft
Community Support
Community Support

Hi, @thomas_coltrain 

You can try to add another calculated column to category these data rows ,then apply this field to a matrix row.

Calculated column =
SWITCH (
    TRUE (),
    CONTAINSSTRING ( Workorder[PrimaryIncidentTypeName], "PM" ), "PM",
    CONTAINSSTRING ( Workorder[PrimaryIncidentTypeName], "DM" ), "DM",
    CONTAINSSTRING ( Workorder[PrimaryIncidentTypeName], "EM" ), "EM"
)

 

Best Regards,
Community Support Team _ Eason

VahidDM
Super User
Super User

Hi @thomas_coltrain 

 

Can you post sample data as text and expected output?
Not enough information to go on;

please see this post regarding How to Get Your Question Answered Quickly:
https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.
4. Relation between your tables

Appreciate your Kudos!!
LinkedIn:www.linkedin.com/in/vahid-dm/

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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