DLM Posted July 30, 2013 Posted July 30, 2013 Hi guys, I'm using FM 5.5v1. I've a field call "Seconds" that simply shows the amount of seconds like this: 88 23 268 409 I would like a calculation that converts them into rounded minutes, following with the above examples the calculation would convert them as follows: 2 1 5 7 What calculation should I use? Best!
DLM Posted July 30, 2013 Author Posted July 30, 2013 P.S. And if the Seconds are 0 (zero) then the calculation would also show 0.
doughemi Posted July 30, 2013 Posted July 30, 2013 Round(Seconds/60, 0) Oh, you want it to always round up. Case( Seconds = 0, 0, Int(Seconds/60) + 1 )
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now