I have a whole number I want to convert to time - ex 570 How Do I use Time to dynamically get the minutes right
=570/60 = 9.5 Which = 9:30 AM
Time(570/60 ,0,0) makes 9:00 - I don't want to hard code Time(570/60 ,30,0) b/c the time could also be 45 minutes after the hour.....
How do I dynamically get the minutes right?
thx