Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Converting HH:MM to just MM

Altrx
5 - Atom

How to convert a column with HH:MM to just minutes 

E.g., I have 1:20 then the output should be 80

1 REPLY 1
jdunkerley79
ACE Emeritus
ACE Emeritus

Two options (using formula tool):

 

 Just the minute part:

ToNumber(Right([HH:MM],2))

(assuming you want as a number otherwise just 

Right([HH:MM],2)

 

Total minutes:

ToNumber(Right([HH:MM],2))+ 60 * ToNumber(Left([HH:MM],2))

 

Quick sample attached

 

Labels