Forum Discussion
Anonymous
6 years agoNot applicable
Splitting columns by Delimiter with DAX (No Query Editor)
Hi, I have values in a column like, " Goext.wk.rainier.global". I would like to split the column by the right most delimiter so that the value in the column is just Goext. I know I can (and h...
amitchandak
Super User
6 years agoAnonymous , try like this in dax
new column = left([column], search(".",[column],1,0)-1)