This article provides information on how to transform your data in a Power BI report.
You can create a new column with your own rules.
You can create your own column. In this example, combine more than one column.
Make sure not to have any errors and click "OK" Note: If any of the combined columns is null, the returned field will be null. You can use the code below in the formula box to fix the issue.
= Text.Combine(List.Select({[Col1],[Col2],[Col3],[Col4]}, each _<> "" and _ <> null)," & ")
You can extract a part of your data. In this example, extracting the last two characters of the STRM data.