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...
AnkitKukreja
Super User
5 years agoHi chavanr
I hope I got your reuirement right, please try below dax
Time in New2 =
RIGHT( 'Time Split'[TIme in new] , 10)
If still it doesn't work create another column and use Trim function to remove extra spaces.
Thanks,
Ankit Kukreja
www.linkedin.com/in/ankit-kukreja1904
Ankit Kukreja
www.linkedin.com/in/ankit-kukreja1904
chavanr
Resolver I
5 years agoHi AnkitKukreja
I am already using the RIGHT function & also tried to use the trim function(to remove spaces) as well but not useful as it is converting the data type 'time' to 'text' & removes the seconds value for the time stamp