Solved: Add space tab Dax - Microsoft Power BI Community
community.powerbi.com › t5 › DesktopMay 30, 2020 · For DAX, you could use the formulas that @az38 suggests. For M, you could try below: = Table.AddColumn(#"Changed Type", "Custom1", each Text.Insert(Text.From([Column1]),2," ")) = Table.AddColumn(#"Changed Type", "Custom", each " " & [Column1]) And there is a thread about add space in the middle. You could reference to have a try,
CONCATENATE function (DAX) - DAX | Microsoft Learn
learn.microsoft.com › en-us › daxJun 21, 2022 · The CONCATENATE function joins two text strings into one text string. The joined items can be text, numbers, Boolean values represented as text, or a combination of those items. You can also use a column reference if the column contains appropriate values. The CONCATENATE function in DAX accepts only two arguments, whereas the Excel CONCATENATE function accepts up to 255 arguments.
CONCATENATEX function (DAX) - DAX | Microsoft Learn
learn.microsoft.com › en-us › daxJun 21, 2022 · This function takes as its first argument a table or an expression that returns a table. The second argument is a column that contains the values you want to concatenate, or an expression that returns a value. Concatenated values are not necessarily sorted in any particular order, unless orderBy_expression is specified.