DISPLAYING TIME ELAPSED IN DAYS AND HOURS

What to be done???

Normalize the values with TO_NUMBER and TO_NCHAR, then concatenate them using the following formula:

CONCAT(CONCAT(‘Days: ‘,TO_NCHAR(FLOOR(TO_NUMBER(TO_NCHAR({timeelapsed}/24))))),

CONCAT(‘ Hours: ‘,TO_NCHAR(MOD(TO_NUMBER(TO_NCHAR({timeelapsed})),24))))

What would be the output???

String

Example of combining CONCAT and other functions.

CONCAT formula shown in the dataset.

Leave a comment

Your email address will not be published. Required fields are marked *