Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEANot the most efficient route...
My solution:
Easy one tool solution @Qiu ! 😃
Although maybe I cheated (you tell me..) since I ignored the 2nd dataset and simply assembled the statement with one big formula.
iif(hours>0,ToString([hours])+ " Hours","")
+
iif([minutes]>0,iif([hours]>0, " "+ ToString([minutes])+ " Minutes", ToString([minutes])+ " Minutes") ,"")
+
iif([Seconds]>0,iif([hours]>0 or [minutes]>0, " "+ ToString([Seconds])+ " Seconds", ToString([Seconds])+ " Seconds") ,"")
@Bennu
It seems that you are crashing all the weekly challenges. And nice approach you have taken for this one. 😃