Nov 5, 2001 #1 matpj Technical User Mar 28, 2001 687 GB Hi, I have a number in a field that I want to convert to minnutes and seconds. how is this possible? eg. number - 66 minutes/ seconds = 01:06 does anyone have any ideas?
Hi, I have a number in a field that I want to convert to minnutes and seconds. how is this possible? eg. number - 66 minutes/ seconds = 01:06 does anyone have any ideas?
Nov 5, 2001 #2 Hasit IS-IT--Management Sep 13, 2001 1,061 GB Try this: =INT(A1/60)&":"&MOD(A1,60) gives you the result 1:6 I have assumed that 66 is in cell A1 and its in seconds. You want to get the minutes and seconds, which is why I have divided by 60. Upvote 0 Downvote
Try this: =INT(A1/60)&":"&MOD(A1,60) gives you the result 1:6 I have assumed that 66 is in cell A1 and its in seconds. You want to get the minutes and seconds, which is why I have divided by 60.