R reenad99 New member Local time Yesterday, 23:11 Joined Mar 24, 2007 Messages 3 Mar 24, 2007 #1 I want to convert a number field of seconds into minutes on a report - seems easy enough but can't figure it out. Any ideas?
I want to convert a number field of seconds into minutes on a report - seems easy enough but can't figure it out. Any ideas?
D Dreamweaver Well-known member Local time Today, 07:11 Joined Nov 28, 2005 Messages 2,467 Mar 24, 2007 #2 Mins = Seconds / 60
R reenad99 New member Local time Yesterday, 23:11 Joined Mar 24, 2007 Messages 3 Mar 24, 2007 #3 Dreamweaver said: Mins = Seconds / 60 Click to expand... sorry, do I put that in the expression box then with the field title?
Dreamweaver said: Mins = Seconds / 60 Click to expand... sorry, do I put that in the expression box then with the field title?
boblarson Smeghead Local time Yesterday, 23:11 Joined Jan 12, 2001 Messages 32,059 Mar 24, 2007 #4 And if you want no decimal places, just the number of WHOLE minutes, use In your report's control source: = [YourSecondsField] \ 60 (notice the backwards slash - that gives you a whole number without any remainder).
And if you want no decimal places, just the number of WHOLE minutes, use In your report's control source: = [YourSecondsField] \ 60 (notice the backwards slash - that gives you a whole number without any remainder).
D Dreamweaver Well-known member Local time Today, 07:11 Joined Nov 28, 2005 Messages 2,467 Mar 25, 2007 #5 boblarson said: (notice the backwards slash - that gives you a whole number without any remainder). Click to expand... Thanks bob just learnt something new
boblarson said: (notice the backwards slash - that gives you a whole number without any remainder). Click to expand... Thanks bob just learnt something new