Converting decimal time into Hours, Days and Minutes

Viewed 28

I want to convert decimals in to hours, and minutes. However my returned value is giving me the following. I want to convert hours into days. This is my current expression.

=Floor(Fields!avg_proc_time.Value) 
& " hrs "
& floor((Fields!avg_proc_time.Value - Floor(Fields!avg_proc_time.Value)) * 60) 
& " mins  "

enter image description here

enter image description here

0 Answers
Related