Using the following statement: CAST(DATEDIFF(MINUTE, TIME_IN, TIME_OUT)/60.00 AS decimal(10,2)) as STRAIGHT ,round((DATEDIFF(MINUTE, TIME_IN, TIME_OUT)/60.00 * 4), 0)/4 as ROUNDEDFROM HOURS
yields the following results:STRAIGHT ROUNDED0.08 0.000004.33 4.250000.03 0.000009.57 9.500004.95 5.00000What I need are rounded results to the nearest .25DESIRED0.254.500.2510.005.00 <----THIS ONE WORKED Some where in my statement I have some thing wrong but I can't figure it out.Any help will be appreciated.Tx.