Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEASolved two ways! The long way, and the "one tool solution" way. 😁
Here's the one-tool formula I ended up using!
TrimLeft(
Replace(
If IsEmpty(TrimLeft(left([Chat Time],2),"0")) Then Null() Else TrimLeft(left([Chat Time],2),"0") + " Hours" Endif
+ " "
+ If IsEmpty(TrimLeft(Substring([Chat Time],3,2),"0")) Then Null() Else TrimLeft(Substring([Chat Time],3,2),"0") + " Minutes" Endif
+ " "
+ If IsEmpty(TrimLeft(Right([Chat Time],2),"0")) Then Null() Else TrimLeft(Right([Chat Time],2),"0") + " Seconds" Endif
," "," ")
)
Cheers!
NJ
No need for that 2nd input of lookup values :)
Had to give it a go also with Regex, capture groups to the rescue