Forum Discussion
Anonymous55
2 years agoFrequent Visitor
Struggling to split column or extract data - zero values
Hi! I have an Excel spreadsheet which contains a list of phone calls received, and the durations of those calls. The durations are displayed as HH:MM:SS, for example: 00:00:21 00:00:13 00:0...
- 2 years ago
In Power Query:
Text.End( [Duration],5 ) -- Replace [Duration] with the name of your column
In DAX
NewColumn = RIGHT( [Duration], 5 )
Anonymous55
2 years agoFrequent Visitor
Thank you so, so much for your help rsbin and apologies for my late reply! I have just tried your solution and it's worked perfectly. Thank you again for your help, I would never have figured this out on my own 🙂