HiI'm getting strange results when converting a number to hours and minutes.The following section of code....AbsentMinutes,CONVERT(varchar(5), DATEADD([minute], [AbsentMinutes], 0), 108) AS AbsentHours,[Term 1 Minutes], CONVERT(varchar(5), DATEADD([minute], [Term 1 Minutes], 0), 108) AS Term1Hours,
......is yielding the following results.AbsentMins 6480 AbsentHours 12:00Term 1 Mins 21540 Term 1 Hours 23:00Obviously thats not right but I cant see where. Can anyone advise please? This has worked for me previously on other data.