Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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/
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
76 | |
73 | |
42 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
43 |