Link to home
Start Free TrialLog in
Avatar of amergts
amergts

asked on

Excel Formula Help

I have attached a document where I want to calculate the minutes in the Duration column. I would like to round up the seconds and calculate anything less than one minute as one minute.
Can someone assist me with creating this formula?  I have five more spreadsheets like this.
Formula.xls
Avatar of Rgonzo1971
Rgonzo1971

Hi,

pls try

=ROUNDUP(E6*1440,0)/1440

Open in new window

Regards
ASKER CERTIFIED SOLUTION
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You can use the formula...

=IF((D6-C6)*1440<1,1,(D6-C6)*1440)

Open in new window


Saurabh...
Formula.xls
Avatar of amergts

ASKER

This worked perfectly.  Thank you for your assistance, you've saved me a lot of time!