Summary hours and minute in crystal report
Use. function
Truncate() // return Integer value Truncate(x,#places) //Value,decimal point Remainder(num,denom) //Value,mod :return mod
Ex. hr = 2.30 --> minute = 150
(Truncate(hr,0)*60) + (Remainder (hr,1 )*100)
summary to string format
totext((Truncate(minute/60)),0)+ '.' + totext((Remainder (minute,60)),0)