Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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!
Solved! Go to Solution.
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
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
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/
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
70 | |
68 | |
43 | |
34 | |
26 |
User | Count |
---|---|
86 | |
49 | |
45 | |
38 | |
37 |