I’m creating a calculated column in a Power BI report. The calculated column concatenates integer and text columns. I tried using the below query to accomplish this, but it resulted in a syntax error.
CalculatedColumn = Number.ToText(table1.[RegionID]) & " " & table1.[RegionName]
I tried some other conversion methods also, which were not successful. Could someone please guide me on how one could achieve the above objective in Power BI?