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
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
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.