Forum Discussion
cyborgandy
Helper II
3 years agoSplit Column DAX Before Space
Hi All, I have below column in my dataset, I want to use delimiter DAX to give me all the left value result before the space however I have written a dax but as I have few entries which doesnt ha...
- 3 years ago
New Column = IFERROR( LEFT( [Full Post Code], SEARCH(" ", [Full Post Code], 1, LEN([Full Post Code])) - 1 ), [Full Post Code] )
eliasayyy
Memorable Member
3 years agoNew Column =
IFERROR(
LEFT(
[Full Post Code],
SEARCH(" ", [Full Post Code], 1, LEN([Full Post Code])) - 1
),
[Full Post Code]
)