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 "