Forum Discussion
chavanr
Resolver I
5 years agoSplit time value column in DAX
Hi there, I have created a new calculated column with "concatenate" function & need to split the same new column as per the "-" seperator. I need the time value which is on the right side as my...
amitchandak
Super User
5 years agochavanr , Try a new column like this in DAX
right([time in new] , len([time in new]) - search("-",[time in new],,0)+1)
chavanr
Resolver I
5 years agoThanks amitchandak will try !!