I have a column that consists time data in hours and minutes, but it is in text format and I need to convert it to duration format in order to measure duration per month which I will use in my dashboard. Is there a syntax in M language?
If these are hours and minutes, then do the following.
Add a column with text before delimiter:
Add a column with text after delimiter:
Change both to whole number type.
Add a column as follows:
#duration(0,[Text Before Delimiter],[Text After Delimiter],0)