Learning to Remove Characters from Strings in Power BI Using DAX
You can use the following syntax in DAX to remove specific characters from a string: Team_New = SUBSTITUTE(‘my_data'[Team], “Team_”, “”) This particular example creates a new column named Team_New that removes the string “Team_” from each string in the Team column of the table named my_data. The following example shows how to use this syntax in […]
Learning to Remove Characters from Strings in Power BI Using DAX Read More »