I have a float value that is derived from dates being subtracted. How do I convert this float value into minutes? Perferably if I could convert it into hours and minutes otherwise just minutes….
For example here are some values I have:
4.12676944443956
3.91463738425955
0.102466473770619
0.0308067515434232
0.0564043209888041
The answer to Pauls question is that these are days.
Assuming that these values indicate days and the precision you want to achieve is minutes. The best possible way for you to do this would be to write a function to multiply this value with 1440 (number of minutes in a day) and round off the places past the decimal. I may be missing something though since the answer cannot be this simple.