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.
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 July 2025 Power BI update to learn about new features.