Hi, can someone help me. I'm converting julian to gregorian dates. Using the basic syntax (VB) having trouble. My code reads as follows:
Function ConJul(JulianDate As Long)
ConJul = DateSerial(1900 + Int(JulianDate / 1000), 1, JulianDate Mod 1000)
End Function
Not working.
Also, converting Kg to lbs, is this possible in crystal.
Thank you very much.
Chris
Function ConJul(JulianDate As Long)
ConJul = DateSerial(1900 + Int(JulianDate / 1000), 1, JulianDate Mod 1000)
End Function
Not working.
Also, converting Kg to lbs, is this possible in crystal.
Thank you very much.
Chris