Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
I am parsing through reported crime dataset where the [Attribute] column contains details on the type of crime and what type of data point it is.
Using Assault as an example, there is a datapoint for Assaults in 2020 (counts how many assaults in 2020) and Assault Rate in 2020 (counts how many assaults in 2020 for every 100K people).
I'd like to create a new conditional column that would parse the [Attribute] column to either state Assault or Assault_Rate.
Thinking a formula such as this would work:
If [Attribute] contains "Rate" then extract all except for the last 4 characters ELSE delimit before "_"
| Attribute | TypeofCrime |
| Assault_2020 | Assault |
| Assault_Rate2020 | Assault_Rate |
Sample Data
Solved! Go to Solution.
I would type this in the formula bar:
= Table.AddColumn(PriorStepName, "TypeOfCrime", each if Text.Contains([Attribute], "Assault_Rate") then "Assault_Rate" else if Text.Contains([Attribute], "Assault") then "Assault" else [Attribute])
--Nate
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 4 | |
| 4 |