subtract time from rand()

lezawang

Well-known Member
Joined
Mar 27, 2016
Messages
1,805
Office Version
  1. 2016
Platform
  1. Windows
Hi
I want to generate random time. So what I tried is that

A1 = 24:00:00-rand()

But I got error message

but when entered the 24:00:00 in A1 and then in B1 I did this

B1 = A1 - rand()

Excel accept that! Why is that? Thank you.
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
You don't say what time resolution that you want. I presume seconds, since you write 24:00:00.

Ostensibly, random time can derived by simply:

=RAND()

The reason is: Excel time is stored as a fraction of a day (1). So, that formula is equivalent to =1*RAND(), which is equivalent to ="24:00"*RAND().

But those formulas have a resolution that is an infinitesimal fraction of a second.

In order to limit the resolution, write:

=--TEXT(RAND(), "[h]:m:s")
or
=--TEXT(ROUND(RAND()*1440,0)/1440, "[h]:m")

formatted as Custom [h]:mm:ss or [h]:mm .

The use of --TEXT(...) ensures that the result has the same binary representation as the apparent time constant.

The first formula works because Excel rounds to the second. The "[h]" format is needed instead of "h" in case time rounds to 24:00:00.

In the second formula, we cannot use simply =--TEXT(RAND(), "[h]:m") because Excel does not round to the minute.

PS.... Another method:

=--(RANDBETWEEN(0,23) & ":" & RANDBETWEEN(0,59) & ":" & RANDBETWEEN(0,59))

But that will generate only up to 23:59:59, not 24:00:00.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,873
Members
449,056
Latest member
ruhulaminappu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top